@charset "UTF-8";
/* Mobile theme switch (single icon button) */
 #snippet-navbar-fixed-dropdown .md-mobile-theme-switch {
    position: relative;
    width: 50px;
    height: 50px;
    padding: 0 !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* border-radius: 999px; */
    -webkit-tap-highlight-color: transparent;
}

#snippet-navbar-fixed-dropdown .md-mobile-theme-switch .md-theme-icon {
    position: absolute;
    inset: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.85) rotate(-12deg);
    transition: opacity 160ms ease, transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: opacity, transform;
    pointer-events: none;
}

#snippet-navbar-fixed-dropdown .md-mobile-theme-switch .md-theme-icon svg {
    width: 20px;
    height: 20px;
}

#snippet-navbar-fixed-dropdown .md-mobile-theme-switch[data-theme-icon-active="auto"] .md-theme-icon[data-theme-icon="auto"],
#snippet-navbar-fixed-dropdown .md-mobile-theme-switch[data-theme-icon-active="light"] .md-theme-icon[data-theme-icon="light"],
#snippet-navbar-fixed-dropdown .md-mobile-theme-switch[data-theme-icon-active="dark"] .md-theme-icon[data-theme-icon="dark"] {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

/* Subtle pressed state */
#snippet-navbar-fixed-dropdown .md-mobile-theme-switch:active {
    transform: scale(0.98);
}
