
/* Dark Mode Toggle Button Styles */
.dark-mode-toggle {
    background-color: transparent;
    border: none;
    font-size: 1em;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 21px 0 0 !important;

}

.dark-mode-toggle:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.dark-mode-toggle .icon {
    transition: transform 0.3s ease;
}

body.dark-mode .dark-mode-toggle .icon {
    transform: rotate(180deg); /* Rotate the icon when dark mode is active */
}
