html,
body,
#root {
  height: 100%;
  margin: 0;
  background: #0f141a;
}

.initial-loader {
  min-height: 100vh;
  background: #0f141a;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
}

.initial-loader .spinner {
  width: 48px;
  height: 48px;
  border: 4px solid #1d4ed8;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.initial-loader .text {
  color: #9c9c95;
  font-family: system-ui, sans-serif;
  font-size: 14px;
}

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