.style-switcher {
    position: fixed;
    right: 0;
    top: 60px;
    padding: 15px;
    width: 200px;
    border-radius: 30px 0 0 30px;
    background: rgba(255, 255, 255, 0.15);
    z-index: 101;
    transform: translateX(100%);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
}

.style-switcher.open {
    transform: translateX(0%);
}

.style-switcher .s-icon {
    position: absolute;
    height: 40px;
    width: 40px;
    text-align: center;
    font-size: 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-black-900);
    right: 100%;
    margin-right: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Style pour le mode jour */
body:not(.dark) .style-switcher,
body:not(.dark) .style-switcher .s-icon {
    background: rgba(255, 255, 255, 0.25);
    color: var(--text-black-900);
}

/* Style pour le mode nuit */
body.dark .style-switcher,
body.dark .style-switcher .s-icon {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.style-switcher .s-icon i {
    line-height: 40px;
}

.style-switcher .style-switcher-toggler {
    top: 0;
}

.style-switcher .day-night {
    top: 55px;
}

.style-switcher h4 {
    margin: 0 0 10px;
    color: inherit;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
}

.style-switcher .colors {
    display: flex;
    flex-wrap: nowrap;  
    justify-content: space-between;
    gap: 8px;  
    padding: 10px 0;
}

.style-switcher .colors span {
    display: inline-block;
    height: 25px;  
    width: 25px;
    border-radius: 50%;  
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.style-switcher .colors span:hover {
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.style-switcher .color-1 {
    background: #FFC000;
}

.style-switcher .color-2 {
    background: #fa5b0f;
}

.style-switcher .color-3 {
    background: #37b182;
}

.style-switcher .color-4 {
    background: #1854b4;
}

.style-switcher .color-5 {
    background: #ec1839;
}
