.modal-toggle-switch {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-weight: normal;
    margin: 0;
}

.modal-toggle-switch input {
    display: none;
}

.modal-toggle-slider {
    width: 40px;
    height: 22px;
    background: #ccc;
    border-radius: 11px;
    position: relative;
    transition: background 0.2s ease;
}

.modal-toggle-slider::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    background: white;
    border-radius: 50%;
    top: 2px;
    left: 2px;
    transition: transform 0.2s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.modal-toggle-switch input:checked + .modal-toggle-slider {
    background: #4CAF50;
}

.modal-toggle-switch input:checked + .modal-toggle-slider::after {
    transform: translateX(18px);
}

.modal-toggle-label {
    font-size: 14px;
    color: #333;
}
