/* switcher.css */
.theme-switcher {
    position: relative;
    width: 100px;
    height: 40px;
    background-color: #87CEEB; /* Light blue sky */
    border-radius: 20px;
    cursor: pointer;
    overflow: hidden;
    transition: background-color 0.5s ease;
}

.theme-switcher .handle {
    position: absolute;
    top: 5px;
    left: 5px;
    width: 30px;
    height: 30px;
    background-color: #FFD700; /* Sun */
    border-radius: 50%;
    transition: transform 0.5s ease, background-color 0.5s ease;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
}

.theme-switcher .cloud {
    position: absolute;
    width: 25px;
    height: 10px;
    background: white;
    border-radius: 10px;
    transition: opacity 0.5s ease;
}

.theme-switcher .cloud.c1 { top: 8px; left: 20px; }
.theme-switcher .cloud.c2 { top: 20px; left: 40px; }
.theme-switcher .cloud.c3 { top: 12px; left: 65px; }


body.dark-mode .theme-switcher {
    background-color: #001f3f; /* Night sky */
}

body.dark-mode .theme-switcher .handle {
    transform: translateX(60px);
    background-color: #f5f3ce; /* Moon */
    box-shadow: 0 0 10px rgba(245, 243, 206, 0.8);
}

body.dark-mode .theme-switcher .cloud {
    opacity: 0;
}

.theme-switcher .star {
    position: absolute;
    background-color: white;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.theme-switcher .star.s1 { top: 10px; left: 15px; width: 2px; height: 2px; }
.theme-switcher .star.s2 { top: 25px; left: 30px; width: 1px; height: 1px; }
.theme-switcher .star.s3 { top: 15px; left: 50px; width: 2px; height: 2px; }
.theme-switcher .star.s4 { top: 20px; left: 70px; width: 1px; height: 1px; }
.theme-switcher .star.s5 { top: 10px; left: 85px; width: 1px; height: 1px; }


body.dark-mode .theme-switcher .star {
    opacity: 1;
}
