/* Force light mode — prevent OS dark theme leaking into UI */
:root, html, body { color-scheme: light only !important; }
@media (prefers-color-scheme: dark) {
  html, body, input, select, textarea, .form-control {
    background-color: #fff !important;
    color: #000 !important;
  }
}
