/* Enforce light native UI controls regardless of OS/browser dark preference. */
:root,
html,
body {
  color-scheme: light !important;
}

html[data-theme="dark"],
body[data-theme="dark"] {
  color-scheme: light !important;
}

/* Keep form controls in light rendering mode project-wide. */
input,
select,
textarea,
button,
input[type="checkbox"],
input[type="radio"] {
  color-scheme: light !important;
}

/* Preserve existing brand accent for toggles where supported. */
input[type="checkbox"],
input[type="radio"] {
  accent-color: #158cba;
}
