.custom-toggle-switch .toggle-switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
}

.custom-toggle-switch .toggle-checkbox {
    display: none;
}

.custom-toggle-switch .toggle-label {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    border-radius: 24px;
    transition: background-color 0.3s;
}

.custom-toggle-switch .toggle-checkbox:checked + .toggle-label {
    background-color: #2196F3;
}

.custom-toggle-switch .toggle-label:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    right: 1px;
    bottom: 1px;
    background-color: white;
    border-radius: 50%;
    transition: transform 0.3s;
}

.custom-toggle-switch .toggle-checkbox:checked + .toggle-label:before {
    transform: translateX(-21px);
}
