/**
 * Styles pour les notifications UMOA - Design moderne et responsive
 * 
 * @package UMOA
 */

/* ============================================================================
   VARIABLES CSS
   ============================================================================ */

:root {
    --notification-primary: #3498db;
    --notification-primary-hover: #2980b9;
    --notification-success: #27ae60;
    --notification-warning: #f39c12;
    --notification-danger: #e74c3c;
    --notification-info: #3498db;
    --notification-bg: #ffffff;
    --notification-border: #e1e8ed;
    --notification-text: #1a202c;
    --notification-text-light: #718096;
    --notification-unread-bg: #f0f7ff;
    --notification-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    --notification-shadow-hover: 0 4px 16px rgba(0, 0, 0, 0.12);
    --notification-radius: 12px;
    --notification-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================================
   WRAPPER PRINCIPAL
   ============================================================================ */

.notifications-page-wrapper {
    min-height: calc(100vh - 200px);
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 2rem 0 4rem;
}

.notifications-page-wrapper .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ============================================================================
   HEADER
   ============================================================================ */

.notifications-page-header {
    margin-bottom: 2rem;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.header-title-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.page-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--notification-text);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.title-icon {
    color: var(--notification-primary);
}

.unread-badge-large {
    background: linear-gradient(135deg, var(--notification-primary) 0%, var(--notification-primary-hover) 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(52, 152, 219, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* ============================================================================
   BOUTON MARQUER TOUT COMME LU
   ============================================================================ */

.btn-mark-all-read {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--notification-primary) 0%, var(--notification-primary-hover) 100%);
    color: white;
    border: none;
    border-radius: var(--notification-radius);
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--notification-transition);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.btn-mark-all-read:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.btn-mark-all-read:active {
    transform: translateY(0);
}

.btn-mark-all-read svg {
    width: 18px;
    height: 18px;
}

/* ============================================================================
   FILTRES
   ============================================================================ */

.notifications-filters {
    margin-bottom: 2rem;
}

.filters-container {
    display: flex;
    gap: 1rem;
    background: white;
    padding: 0.5rem;
    border-radius: var(--notification-radius);
    box-shadow: var(--notification-shadow);
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: 2px solid transparent;
    background: transparent;
    border-radius: calc(var(--notification-radius) - 2px);
    color: var(--notification-text-light);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--notification-transition);
    position: relative;
}

.filter-btn:hover {
    background: #f7fafc;
    color: var(--notification-text);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--notification-primary) 0%, var(--notification-primary-hover) 100%);
    color: white;
    border-color: var(--notification-primary);
    box-shadow: 0 2px 8px rgba(52, 152, 219, 0.2);
}

.filter-btn svg {
    width: 16px;
    height: 16px;
}

.filter-badge {
    background: rgba(255, 255, 255, 0.3);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-left: 0.25rem;
}

.filter-btn.active .filter-badge {
    background: rgba(255, 255, 255, 0.25);
}

/* ============================================================================
   LISTE DES NOTIFICATIONS
   ============================================================================ */

.notifications-list-page {
    margin-top: 1rem;
}

.notifications-grid {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

/* ============================================================================
   CARTE DE NOTIFICATION
   ============================================================================ */

.notification-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    border-radius: 16px;
    padding: 1.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    cursor: pointer;
}

.notification-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #3498db 0%, #2980b9 100%);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0 4px 4px 0;
}

.notification-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.02) 0%, rgba(41, 128, 185, 0.01) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.notification-card.unread {
    background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
    border: 1px solid rgba(52, 152, 219, 0.15);
    box-shadow: 0 4px 20px rgba(52, 152, 219, 0.12), 0 2px 8px rgba(52, 152, 219, 0.08);
}

.notification-card.unread::before {
    transform: scaleY(1);
}

.notification-card.unread::after {
    opacity: 1;
}

.notification-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: rgba(52, 152, 219, 0.2);
}

.notification-card:hover::after {
    opacity: 1;
}

.notification-card.read {
    opacity: 0.95;
}

.notification-card.read:hover {
    opacity: 1;
}

.notification-indicator {
    position: absolute;
    top: 1.75rem;
    right: 1.75rem;
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2), 0 2px 4px rgba(52, 152, 219, 0.3);
    animation: ping 2.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    z-index: 2;
}

@keyframes ping {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(52, 152, 219, 0.7), 0 2px 4px rgba(52, 152, 219, 0.3);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 0 8px rgba(52, 152, 219, 0), 0 2px 4px rgba(52, 152, 219, 0.3);
    }
}

.notification-card-content {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

/* ============================================================================
   ICÔNE DE NOTIFICATION
   ============================================================================ */

.notification-icon-wrapper {
    flex-shrink: 0;
}

.notification-icon-badge {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.notification-icon-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
}

.notification-card:hover .notification-icon-badge {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.notification-icon-badge.order {
    background: linear-gradient(135deg, #fff1f2 0%, #ffe4e6 100%);
    border-color: rgba(239, 68, 68, 0.1);
}

.notification-icon-badge.payment {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-color: rgba(34, 197, 94, 0.1);
}

.notification-icon-badge.delivery {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    border-color: rgba(251, 191, 36, 0.1);
}

.notification-icon-badge.shop {
    background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%);
    border-color: rgba(139, 92, 246, 0.1);
}

.notification-icon-badge.article {
    background: linear-gradient(135deg, #ecfeff 0%, #cffafe 100%);
    border-color: rgba(14, 165, 233, 0.1);
}

.notification-icon-badge.success {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-color: rgba(34, 197, 94, 0.1);
}

.notification-icon-badge.warning {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    border-color: rgba(251, 191, 36, 0.1);
}

.notification-icon-badge.info {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-color: rgba(59, 130, 246, 0.1);
}

.icon-emoji {
    display: block;
    line-height: 1;
}

/* ============================================================================
   CORPS DE LA NOTIFICATION
   ============================================================================ */

.notification-body {
    flex: 1;
    min-width: 0;
}

.notification-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 0.625rem 0;
    line-height: 1.5;
    letter-spacing: -0.01em;
}

.notification-card.unread .notification-title {
    color: #111827;
    font-weight: 700;
}

.notification-message {
    font-size: 0.9375rem;
    color: #4b5563;
    margin: 0 0 1rem 0;
    line-height: 1.7;
    letter-spacing: 0.01em;
}

.notification-card.unread .notification-message {
    color: #374151;
}

.notification-footer {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.notification-time {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: #6b7280;
    padding: 0.375rem 0.75rem;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.notification-card:hover .notification-time {
    background: rgba(0, 0, 0, 0.04);
    color: #4b5563;
}

.notification-time svg {
    width: 14px;
    height: 14px;
    opacity: 0.7;
    stroke-width: 2.5;
}

/* ============================================================================
   ACTIONS
   ============================================================================ */

.notification-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
    z-index: 1;
}

.btn-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.btn-action::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-action:hover::before {
    left: 100%;
}

.btn-mark-read {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(52, 152, 219, 0.25);
}

.btn-mark-read:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.35);
    background: linear-gradient(135deg, #2980b9 0%, #1f6391 100%);
}

.btn-view {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #495057;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.btn-view:hover {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    border-color: #2980b9;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.25);
}

.btn-action svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* ============================================================================
   ÉTAT VIDE
   ============================================================================ */

.notifications-empty {
    padding: 4rem 2rem;
}

.empty-state {
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
}

.empty-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    color: var(--notification-text-light);
    opacity: 0.5;
}

.empty-state h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--notification-text);
    margin: 0 0 0.75rem 0;
}

.empty-state p {
    font-size: 1rem;
    color: var(--notification-text-light);
    margin: 0 0 2rem 0;
    line-height: 1.6;
}

.btn-empty-action {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, var(--notification-primary) 0%, var(--notification-primary-hover) 100%);
    color: white;
    text-decoration: none;
    border-radius: var(--notification-radius);
    font-weight: 600;
    transition: var(--notification-transition);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.btn-empty-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

/* ============================================================================
   DROPDOWN DE NOTIFICATIONS (dans la nav)
   ============================================================================ */

.notification-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    height: 100%;
    pointer-events: auto;
    z-index: 10;
}

/* S'assurer que le wrapper est le conteneur de positionnement pour le dropdown */
.notification-wrapper {
    position: relative !important;
    /* S'assurer que le wrapper ne limite pas la largeur du dropdown */
    min-width: auto !important;
    width: auto !important;
}

.notification-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.15s ease;
    padding: 8px 10px;
    border-radius: 2px;
    border: 1px solid transparent;
    color: #FFFFFF;
    height: 100%;
    min-height: 40px;
    pointer-events: auto;
    z-index: 11;
    text-decoration: none;
}

.notification-icon:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.notification-icon svg {
    width: 20px;
    height: 20px;
    stroke-width: 2;
}

.notification-badge,
.notifications-badge {
    position: absolute;
    top: 4px;
    right: 4px;
    background: #FF6B35;
    color: white;
    border-radius: 10px;
    min-width: 18px;
    height: 18px;
    font-size: 10px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    z-index: 1;
    border: 2px solid #131921;
}

@media (max-width: 768px) {
    .notification-icon {
        padding: 6px 8px;
        min-height: 36px;
    }
    
    .notification-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .notification-badge,
    .notifications-badge {
        width: 16px;
        height: 16px;
        font-size: 9px;
        min-width: 16px;
        padding: 0 4px;
        top: 2px;
        right: 2px;
    }
}

.notification-dropdown,
.notifications-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 400px !important;
    min-width: 400px !important;
    max-width: 90vw;
    max-height: 600px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 10001;
    display: none;
    flex-direction: column;
    overflow: hidden;
    /* S'assurer que le dropdown n'est pas contraint par le parent */
    left: auto !important;
}

.notification-dropdown.show,
.notifications-dropdown.show {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* S'assurer que le dropdown est visible même avec style inline */
.notification-dropdown[style*="display: flex"],
.notifications-dropdown[style*="display: flex"] {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 400px !important;
    min-width: 400px !important;
}

/* Forcer la largeur pour tous les enfants directs du dropdown */
.notification-dropdown > *,
.notifications-dropdown > * {
    width: 100% !important;
    min-width: 100% !important;
    box-sizing: border-box;
}

.notification-header,
.notifications-header {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100% !important;
    min-width: 100% !important;
    box-sizing: border-box;
}

.notification-header h3,
.notifications-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.notification-view-all {
    color: var(--blue-medium);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.notification-view-all:hover {
    color: var(--blue-deep);
    text-decoration: underline;
}

.notification-list,
.notifications-list {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 10px 0;
    min-height: 0; /* Important pour que flex + overflow fonctionne */
    max-height: 500px; /* Hauteur maximale pour forcer le scroll */
    width: 100% !important;
    min-width: 100% !important;
    box-sizing: border-box;
}

.notification-loading,
.notification-empty {
    padding: 40px 20px;
    text-align: center;
    color: #999;
    font-size: 14px;
    width: 100% !important;
    min-width: 100% !important;
    box-sizing: border-box;
}

.mark-all-read-btn {
    background: none;
    border: none;
    color: #3498db;
    cursor: pointer;
    font-size: 18px;
    padding: 5px 10px;
    border-radius: 4px;
    transition: background 0.2s;
}

.mark-all-read-btn:hover {
    background: #f0f0f0;
}

.notification-item {
    padding: 15px 20px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    transition: background 0.2s;
    position: relative;
    border-bottom: 1px solid #f0f0f0;
}

.notification-item:hover {
    background: #f9f9f9;
}

.notification-item.unread {
    background: #f0f7ff;
}

.notification-item.unread:hover {
    background: #e0efff;
}

.notification-content {
    flex: 1;
    min-width: 0;
}

.notification-title {
    font-weight: 600;
    font-size: 14px;
    color: #333;
    margin-bottom: 4px;
}

.notification-message {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
    margin-bottom: 6px;
}

.notification-time {
    font-size: 11px;
    color: #999;
}

.notification-dot {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 8px;
    height: 8px;
    background: #3498db;
    border-radius: 50%;
}

.no-notifications {
    padding: 40px 20px;
    text-align: center;
    color: #999;
    font-size: 14px;
}

.loading {
    padding: 40px 20px;
    text-align: center;
    color: #999;
    font-size: 14px;
}

.notification-mark-read {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.notification-mark-read:hover {
    background: #2980b9;
}

.notifications-footer {
    padding: 15px 20px;
    border-top: 1px solid #eee;
    text-align: center;
}

.notifications-footer a {
    color: #3498db;
    text-decoration: none;
    font-size: 14px;
}

.notifications-footer a:hover {
    text-decoration: underline;
}

.notification-toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    max-width: 90vw;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    padding: 15px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 10000;
}

.notification-toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.toast-content {
    flex: 1;
}

.toast-title {
    font-weight: 600;
    font-size: 14px;
    color: #333;
    margin-bottom: 4px;
}

.toast-message {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
}

/* ============================================================================
   RESPONSIVE
   ============================================================================ */

@media (max-width: 768px) {
    .notifications-page-wrapper {
        padding: 1rem 0 2rem;
    }
    
    .notifications-page-wrapper .container {
        padding: 0 1rem;
    }
    
    .page-title {
        font-size: 1.5rem;
    }
    
    .header-content {
        flex-direction: column;
        align-items: stretch;
    }
    
    .header-title-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .btn-mark-all-read {
        width: 100%;
        justify-content: center;
    }
    
    .filters-container {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .filter-btn {
        width: 100%;
        justify-content: center;
    }
    
    .notification-card {
        padding: 1.25rem;
    }
    
    .notification-card-content {
        gap: 0.75rem;
    }
    
    .notification-icon-badge {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .notification-title {
        font-size: 1rem;
    }
    
    .notification-message {
        font-size: 0.875rem;
    }
    
    .notification-actions {
        margin-top: 0.75rem;
        padding-top: 0.75rem;
    }
    
    .notification-dropdown,
    .notifications-dropdown {
        position: fixed;
        top: 60px;
        right: 10px;
        left: 10px;
        width: auto !important;
        min-width: auto !important;
        max-width: calc(100vw - 20px) !important;
        max-height: 80vh;
    }
    
    .notification-toast {
        right: 10px;
        left: 10px;
        width: auto;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 1.25rem;
    }
    
    .notification-card {
        padding: 1rem;
    }
    
    .notification-icon-badge {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }
    
    .empty-icon {
        width: 80px;
        height: 80px;
    }
    
    .empty-state h2 {
        font-size: 1.25rem;
    }
}
