:root {
  color-scheme: light !important;
}

html {
  background-color: white !important;
}

body {
  background-color: white !important;
}

/* Force all elements to inherit light theme colors */
/*
* {
  transition: none !important;
}
*/
/* Pre-render white background */
html::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  z-index: -1;
} 