/* Initialisation du thème - appliqué avant tout autre CSS */

:root {
  color-scheme: light;
  background: #ffffff;
  color: #000000;
}

/* Mode SOMBRE */
html.dark {
  color-scheme: dark;
  background: #121212;
  color: #f1f1f1;
}

html.dark body {
  background: #121212;
  color: #f1f1f1;
}

/* Mode CLAIR - reset explicite */
html:not(.dark) {
  background: #ffffff;
  color: #000000;
}

html:not(.dark) body {
  background: #ffffff;
  color: #000000;
}
