/* Force light mode styles */
:root {
  color-scheme: light !important;
}

html, body {
  background-color: #ffffff !important;
  color: #212529 !important;
}

/* Override any potential dark mode classes */
.dark-mode, .theme-dark, .night-mode, [data-theme="dark"] {
  background-color: #ffffff !important;
  color: #212529 !important;
}

/* Override browser/OS preferred color scheme */
@media (prefers-color-scheme: dark) {
  html, body {
    background-color: #ffffff !important;
    color: #212529 !important;
  }
  
  * {
    color-scheme: light !important;
  }
}