/* ===========================
   Theme Toggle Button
   =========================== */

.theme-toggle {
    min-width: 40px;
    max-width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--borders-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.5s;
}

.theme-toggle:hover {
    background-color: var(--primary-color1);
}

.theme-toggle svg {
    stroke: var(--black-color);
    fill: none;
    transition: 0.5s;
}

.theme-toggle:hover svg {
    stroke: var(--dark-title-color);
}

/* Light mode: show sun, hide moon */
.theme-toggle .sun-icon {
    display: block;
}

.theme-toggle .moon-icon {
    display: none;
}

/* Dark mode: show moon, hide sun */
body.dark .theme-toggle .sun-icon {
    display: none;
}

body.dark .theme-toggle .moon-icon {
    display: block;
}

/* Responsive */
@media (max-width: 576px) {
    .theme-toggle {
        min-width: 40px;
        max-width: 40px;
        height: 40px;
    }
}
