.custom-toggle-wrapper {
    padding: 8px;
    margin: 4px 0;
}

.custom-toggle-wrapper label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.custom-toggle {
    appearance: none;
    width: 40px;
    height: 24px;
    background-color: #ccc;
    border: 2px solid #ff0000;
    border-radius: 12px;
    position: relative;
    cursor: pointer;
    transition: background-color 0.3s;
}

.custom-toggle:checked {
    background-color: #4CAF50;
}

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

.custom-toggle:checked::before {
    transform: translateX(16px);
} 