.push-toggle {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    padding: 5px 10px;
    background-color: #f0f0f0;
    border-radius: 25px;
    transition: background-color 0.3s;
}

.push-toggle:hover {
    background-color: #e0e0e0;
}

.push-toggle__switch {
    position: relative;
    width: 50px;
    height: 10px;
    background-color: #ccc;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.push-toggle__switch::before {
    content: '';
    position: absolute;
    width: 22px;
    height: 5px;
    border-radius: 50%;
    top: 2px;
    left: 2px;
    background-color: white;
    transition: transform 0.3s;
}

.push-toggle__checkbox {
    display: none;
}

    .push-toggle__checkbox:checked + .push-toggle__switch {     
        background-color: #8d65c6;
}

.push-toggle__checkbox:checked + .push-toggle__switch::before {
    transform: translateX(24px);
}

.push-toggle__label {
    margin-left: 10px;
    font-family: Arial, sans-serif;
    font-size: 4px;
}

.push-toggle--disabled {
    opacity: 0.6;
    cursor: not-allowed;
}