/* FORCE LIGHT MODE - Override all dark mode attempts */
/* This file ensures the website stays in light mode on all devices */

:root {
  color-scheme: light only !important;
}

html {
  color-scheme: light only !important;
  background-color: #FFFFFF !important;
  background: white !important;
}

body {
  color-scheme: light only !important;
  background-color: #FFFFFF !important;
  background: white !important;
}

/* Override dark mode preference */
@media (prefers-color-scheme: dark) {
  :root, html, body {
    color-scheme: light only !important;
    background-color: #FFFFFF !important;
    background: white !important;
  }
  
  * {
    color-scheme: light only !important;
  }
  
  /* Force all elements to use light backgrounds */
  div, section, header, footer, nav, main, aside {
    background-color: inherit !important;
  }
}

/* Samsung-specific dark mode override */
html[data-color-mode="dark"],
body[data-color-mode="dark"],
html[data-theme="dark"],
body[data-theme="dark"],
html[data-dark-mode="true"],
body[data-dark-mode="true"] {
  color-scheme: light only !important;
  background-color: #FFFFFF !important;
  background: white !important;
  -webkit-filter: none !important;
  filter: none !important;
}
