body {
  margin: 0;
  padding: 0;
}

.splash-screen {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Helvetica, 'sans-serif';
  background-color: #f2f3f8;
  color: #5E6278;
  line-height: 1;
  font-size: 14px;
  font-weight: 400;
}

.splash-screen__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  text-align: center;
}

.splash-screen__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.splash-screen__logo img {
  display: block;
  margin: 0;
  height: auto;
  max-height: 68px;
  width: auto;
  max-width: min(360px, 88vw);
}

.splash-screen span {
  display: block;
  margin: 0;
  color: #5E6278;
  text-align: center;
  transition: none !important;
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
}

/* Logo viewBox 482x138: içerik merkezi (~199) geometrik merkezden (~241) ~42 birim solda */
#splash-loading-text {
  transform: translateX(calc(-42 * 68px / 138));
}

.splash-screen .theme-dark-show {
  display: none;
}

[data-bs-theme="dark"] .splash-screen .theme-light-show {
  display: none;
}

[data-bs-theme="dark"] .splash-screen .theme-dark-show {
  display: block;
}

[data-bs-theme="dark"] .splash-screen {
  background-color: #151521;
  color: #92929F;
}

[data-bs-theme="dark"] .splash-screen span {
  color: #92929F;
}

#root {
  opacity: 1;
  transition: opacity 1s ease-in-out;
}
