/* Hide moon icon image but keep toggle functionality */
#btnSwitch img {
    display: none !important;
}

/* Ensure toggle button still clickable */
#btnSwitch {
    cursor: pointer;
}

/* Responsive: also hide on mobile */
@media (max-width: 768px) {
    #btnSwitch img {
        display: none !important;
    }
}
