/* force the Darkmode overlay to the very top */
.darkmode-layer {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  mix-blend-mode: difference !important;
  background: #fff !important;          /* white = full invert */
  pointer-events: none !important;
  z-index: 2147483647 !important;       /* maximum */
}