/* ============================================================================
   NOTIFICATION PREFERENCES PANEL
   ============================================================================ */

/* Group Section */
.notif-group-section {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.notif-group-header {
    padding: 1rem;
    background: linear-gradient(135deg, rgba(76, 170, 201, 0.1), rgba(76, 170, 201, 0.05));
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: #1f2937;
    font-size: 0.95rem;
}

.notif-group-header i {
    color: #4caac9;
    font-size: 1rem;
}

/* Preference Item */
.notif-pref-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #f3f4f6;
    transition: background 0.2s;
}

.notif-pref-item:last-child {
    border-bottom: none;
}

.notif-pref-item:hover:not(.notif-required) {
    background: #f9fafb;
}

/* Required Notification Items */
.notif-pref-item.notif-required {
    background: #f9fafb;
    opacity: 0.7;
    cursor: not-allowed;
}

.notif-pref-info {
    flex: 1;
}

.notif-pref-title {
    font-size: 0.9rem;
    font-weight: 500;
    color: #1f2937;
    margin-bottom: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.notif-lock-icon {
    color: #9ca3af;
    font-size: 0.85rem;
}

.notif-pref-subtitle {
    font-size: 0.8rem;
    color: #6b7280;
}

/* Mobile Adjustments */
@media (max-width: 1024px) {
    .notif-group-header {
        padding: 0.875rem;
        font-size: 0.9rem;
    }

    .notif-pref-item {
        padding: 0.875rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .notif-pref-item .settings-toggle {
        align-self: flex-end;
    }

    .notif-pref-title {
        font-size: 0.85rem;
    }

    .notif-pref-subtitle {
        font-size: 0.75rem;
    }
}