.ws-switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
}

.ws-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.ws-switch input:checked + .ws-slider {
    background-color: #3b82f6;
}

.ws-switch input:checked + .ws-slider::before {
    transform: translateX(20px);
}

