/* EasyLine is intentionally light-only. Prevent mobile browsers from applying
   an automatic dark palette when the device uses a dark system appearance. */
:root {
  color-scheme: only light !important;
}

html,
body {
  background-color: #ffffff;
  background-image: linear-gradient(#ffffff, #ffffff);
}

button,
input,
select,
textarea {
  color-scheme: light;
}

@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: only light !important;
  }

  html,
  body {
    background-color: #ffffff !important;
    background-image: linear-gradient(#ffffff, #ffffff) !important;
  }
}
