/*
 * VATGPT main.css
 *
 * This file is now minimal - Tailwind CSS handles most styling via CDN.
 * Only custom overrides and non-Tailwind styles remain here.
 */

/* Smooth scroll for anchor links */
html {
  scroll-behavior: smooth;
}

/* Custom selection color */
::selection {
  background-color: #d9e3ff;
  color: #061b4f;
}

/* Dark mode selection */
.dark ::selection {
  background-color: #2f6bff;
  color: #ffffff;
}

/* Dark mode transitions */
html.dark {
  color-scheme: dark;
}

/* Force dark mode for inputs in dark mode */
html.dark input,
html.dark select,
html.dark textarea {
  background-color: #020C23;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.2);
}

html.dark input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
