/* ==================== NOTIFICATION SETTINGS ==================== */
.notification-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: var(--spacing-sm) 0;
    cursor: pointer;
    transition: opacity var(--transition-fast);
}

.notification-option.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.notification-checkbox {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.notification-checkbox:disabled {
    cursor: not-allowed;
}

.notification-label {
    color: var(--text-secondary);
    font-size: 0.875rem;
    user-select: none;
}

.notification-option.disabled .notification-label {
    color: var(--text-tertiary);
}

.btn-test-notification {
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
    font-weight: 500;
}

.btn-test-notification:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.btn-test-notification:active {
    transform: scale(0.95);
}
