/* Dark Mode Toggle Widget Styles */
.dark-mode-toggle-wrapper {
    display: inline-block;
    cursor: pointer;
    vertical-align: -webkit-baseline-middle;
}

/* Smooth color transition */
body, body.dark-mode {
    transition: background-color 0.3s ease-in-out, color 0s ease-in-out;
}

/* Ensure images are not altered */
body.dark-mode img {
    filter: none !important;
}

/* Invert images with class "darkinvert" */
body.dark-mode .darkinvert img {
    filter: invert(1) !important;
}
