/* invert images in dark mode */
@media (prefers-color-scheme: dark) {
    html:not(.light-mode) div.contents div.dotgraph iframe,
    html:not(.light-mode) div.contents div.image object,
    html:not(.light-mode) div.contents div.image img {
        filter: hue-rotate(180deg) invert();
    }
}

html.dark-mode div.contents div.dotgraph iframe,
html.dark-mode div.contents div.image object,
html.dark-mode div.contents div.image img {
    filter: hue-rotate(180deg) invert();
}

div.light-mode iframe,
div.light-mode object,
div.light-mode img {
    filter: none !important
}

/* fix for cropped search icon */
#MSearchSelectExt {
    width: 13px;
}
