/* Base styles - Tailwind loaded via CDN */

:root {
  --app-bg-1: #0b1220;
  --app-bg-2: #111827;
  --text-default: #e6eef8;
}

html,
body,
#root {
  height: 100%;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--app-bg-1);
  color: var(--text-default);
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  min-height: 100vh;
}

/* Minimal sensible defaults so the app isn't a plain white screen
   if Tailwind utilities fail to load. Do not rely on these for full styling. */
#root {
  min-height: 100vh;
  display: block;
}

a,
button,
input,
textarea {
  font-family: inherit;
}

/* End placeholder. Replace with compiled Tailwind CSS for production. */