html,
body {
  height: 100%;
  margin: 0;
}

#root {
  height: 100%;
}

[data-ssr-fallback] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

#app-shell-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  background: #ffffff;
  opacity: 1;
  transition: opacity 0.2s ease;
}

#app-shell-loader.is-hidden {
  opacity: 0;
  pointer-events: none;
}

#app-shell-loader img {
  width: 3rem;
  height: 3rem;
}

.app-shell-spinner {
  width: 2rem;
  height: 2rem;
  border: 3px solid #ececf0;
  border-top-color: #030213;
  border-radius: 9999px;
  animation: app-shell-spin 0.75s linear infinite;
}

@keyframes app-shell-spin {
  to {
    transform: rotate(360deg);
  }
}
