body {
  margin: 0;
  padding: 0;
}

/* Roomgrid splash — quiet centered text on the app background (Implementation
   Notes: no spinners; subdued text). Tokens are duplicated here because this
   sheet loads before the app bundle. */
.splash-screen {
  position: absolute;
  z-index: 1000;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  background-color: #fafaf7;
  color: #8c8a80;
  line-height: 1;
  font-size: 13px;
  font-weight: 500;
}

.splash-screen span {
  color: #8c8a80;
  transition: none !important;
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
}

[data-theme="dark"] .splash-screen {
  background-color: #141412;
  color: #8a877c;
}

[data-theme="dark"] .splash-screen span {
  color: #8a877c;
}

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