.flip-switch-popup {
    position: relative;
    width: 90px;
    height: 48px;
    transform: scale(0.8);
    transform-origin: top left;
}

.switch-label-popup {
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #e0e0e0,#c0c0c070);
    border-radius: 50px;
    position: relative;
    cursor: pointer;
    transition: background 0.3s ease;
    box-shadow: inset -2px -2px 5px #ffffff, inset 2px 2px 5px #b0b0b0;
}

.icons-popup {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 12px;
    z-index: 1;
}

.icons-popup img {
    width: 25px;
    height: 25px;
    opacity: 1;
    padding: 0;
}

.icons-popup .moon-popup {
    margin-right: 25px;
}

.icons-popup .sun-popup {
    position: absolute;
    right: 12px;
}

.switch-handle-popup {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(145deg, #ffffff, #d1d1d1);
    box-shadow: 2px 2px 5px rgba(0,0,0,0.3), -2px -2px 5px rgba(255,255,255,0.8);
    transition: transform 0.4s ease, background 0.4s ease;
    z-index: 2;
}

input.mode-toggle{
    display: none;
}

input:checked + .switch-label-popup {
    background: linear-gradient(145deg, #273042, #222b3a);
    box-shadow: inset -2px -2px 5px #3a3a3a, inset 2px 2px 5px #181818;
}

input:checked + .switch-label-popup .switch-handle-popup {
    transform: translateX(42px);
    background: linear-gradient(145deg, #3a3a3a, #273042);
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5),
    -2px -2px 5px rgba(255, 255, 255, 0.05);
}

@media (max-width: 768px) {
    .flip-switch-popup {
        transform: scale(0.6);
        transform-origin: top left;
    }
}
