/* Container for the style switcher */
.style-switcher {
    position: fixed;
    right: 0;
    top: 60px;
    padding: 15px;
    width: 200px;
    border: 1px solid var(--bg-black-50);
    background: var(--bg-black-100);
    z-index: 101;
    border-radius: 5px;
    transition: all 0.3s ease;
    transform: translateX(100%); 
}

/* Open state of the style switcher */
.style-switcher.open {
    transform: translateX(0); 
}

/* Toggler icon */
.style-switcher .s-icon {
    position: absolute;
    height: 40px;
    width: 40px;
    text-align: center;
    font-size: 20px;
    background: var(--bg-black-100);
    color: var(--text-black-900);
    right: 100%;
    border: 1px solid var(--bg-black-50);
    margin-right: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50%;
    z-index: 102;
}

/* Center the icon vertically */
.style-switcher .s-icon i {
    line-height: 40px;
}

/* Theme container styles */
.theme-container {
    padding: 10px;
    background: var(--bg-black-100);
    border-radius: 5px;
    border: 1px solid var(--bg-black-50);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Show the theme container when toggled */
.style-switcher.open .theme-container {
    display: block;
}

/* Heading styles */
.style-switcher h4 {
    margin: 0 0 10px;
    color: var(--text-black-700);
    font-weight: 600;
    text-transform: capitalize;
}

/* Color options container */
.style-switcher .colors {
    display: flex;
    flex-wrap: wrap;
    gap: 10px; 
}

/* Color swatches */
.style-switcher .colors span {
    display: inline-block;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    cursor: pointer; 
    border: 1px solid transparent; 
}

/* Specific color swatches */
.style-switcher .color-1 {
    background: #ec1839;
}
.style-switcher .color-2 {
    background: #fa5b0f;
}
.style-switcher .color-3 {
    background: #37b182;
}
.style-switcher .color-4 {
    background: #1854b4;
}
.style-switcher .color-5 {
    background: #f021b2;
}
