/* Force light mode + white background. Zoom's in-client browser inherits the
 * user's OS appearance, which can turn unstyled pages black. This stylesheet
 * pins the colour scheme so server-rendered partials stay readable. */
:root { color-scheme: light only; }
html, body {
  background: #ffffff !important;
  color: #111111 !important;
}
input, textarea, select, button {
  color-scheme: light;
}
