.style-switcher
{
    position: fixed;
    right: -200px;   /* 👈 Panel completely outside */
    top: 60px;
    padding: 15px;
    width: 200px;
    background: var(--bg-black-100);
    border: 1px solid var(--bg-black-50);
    border-radius: 5px;
    z-index: 999;
    transition: 0.4s ease;
}

.style-switcher.open
{
    right: 0;   /* 👈 Slide inside */
}

.style-switcher .s-icon
{
    position: absolute;
    top: 0;
    left: -40px;   /* 👈 Icon outside panel */
    height: 40px;
    width: 40px;
    line-height: 40px;
    text-align: center;
    background: var(--bg-black-100);
    border: 1px solid var(--bg-black-50);
    border-radius: 50%;
    cursor: pointer;
}

.style-switcher .day-night
{
    top: 55px;
}

.style-switcher .colors
{
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.style-switcher .colors span
{
    height: 30px;
    width: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: inline-block;
}
.style-switcher h4
{
    margin: 0 0 10px;
    color: var(--text-black-700);
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
}


.style-switcher .s-icon
{
    position: absolute;
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 40px;   /* 🔥 IMPORTANT */
    font-size: 20px;
    background: var(--bg-black-100);
    color: var(--text-black-900);
    right: 160px;
    border: 1px solid var(--bg-black-50);
    cursor: pointer;
    border-radius: 50%;
}
.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;
}