/* From VrilWebHosting/Views/Shared/_TablerHead.cshtml (theme toggle icon polish). */
.theme-toggle svg {
    transition: transform .2s, opacity .2s, color .2s;
    opacity: .85;
}

.theme-toggle:hover svg {
    opacity: 1;
    transform: scale(1.1);
    color: #f5c542;
}

html[data-bs-theme="dark"] .theme-toggle #icon-sun {
    color: #f5c542;
}

html[data-bs-theme="light"] .theme-toggle #icon-moon {
    color: #4a5568;
}
