/* CSS Reset for consistent hydration */
html, body {
  margin: 0;
  padding: 0;
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  background-color: white;
}

@media (prefers-color-scheme: dark) {
  html, body {
    background-color: #030712;
    color: white;
    color-scheme: dark;
  }
}

/* Ensure consistent rendering across SSR and client */
* {
  box-sizing: border-box;
}

/* Prevent hydration layout shifts */
#root {
  min-height: 100vh;
}
