/* Forced dark mode for the caddy-security auth portal (Bulma-based "basic"
   theme). We don't control the portal's markup/classes, so rather than
   chase Bulma selectors that may change between versions, invert the whole
   page and re-invert actual images/video so photos/logos don't come out as
   negatives. Icon fonts (Line Awesome glyphs) are plain colored text, so
   they invert correctly along with everything else. */

:root {
  color-scheme: dark;
}

html {
  background: #fff !important;
  filter: invert(1) hue-rotate(180deg);
}

img,
video,
picture,
canvas,
[style*="background-image"] {
  filter: invert(1) hue-rotate(180deg);
}
