/* ============================================
   BENACHRICHTIGUNGSSEITE - ELEGANT & MODERN
   ============================================ */

.notification-page {
    background: #f8fafc;
}

.notification-container {
    padding: 4rem 0;
}

/* ============================================
   HEADER
   ============================================ */

.notification-header {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    padding: 2rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.notification-header-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
}

.notification-header-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, #0096ff 0%, #0077cc 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: #ffffff;
    flex-shrink: 0;
}

.notification-header-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0;
}

.notification-header-subtitle {
    font-size: 0.938rem;
    color: #718096;
    margin: 0.25rem 0 0 0;
}

.notification-unread-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.625rem;
    background: #0096ff;
    color: #ffffff;
    border-radius: 999px;
    font-size: 0.813rem;
    font-weight: 600;
}

.notification-mark-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #0096ff;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.938rem;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 150, 255, 0.25);
}

.notification-mark-all-btn:hover {
    background: #0077cc;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 150, 255, 0.35);
}

/* ============================================
   NOTIFICATION LIST
   ============================================ */

.notification-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.notification-item {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    transition: all 0.2s ease;
}

.notification-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.notification-item--unread {
    border-left: 4px solid #0096ff;
    background: rgba(0, 150, 255, 0.02);
}

.notification-item--important {
    border-left: 4px solid #ef4444;
    background: rgba(239, 68, 68, 0.02);
}

/* Indicator */
.notification-indicator {
    flex-shrink: 0;
}

.notification-indicator-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
}

.notification-indicator-icon--unread {
    background: rgba(0, 150, 255, 0.1);
    color: #0096ff;
}

.notification-indicator-icon--read {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

.notification-indicator-icon--important {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

/* Content */
.notification-content {
    flex: 1;
    min-width: 0;
}

.notification-content-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.notification-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0;
}

.notification-badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.notification-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.25rem 0.625rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    white-space: nowrap;
}

.notification-badge--important {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.notification-badge--personal {
    background: rgba(0, 150, 255, 0.1);
    color: #0096ff;
}

.notification-badge--new {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
}

.notification-badge i {
    font-size: 0.75rem;
}

.notification-message {
    font-size: 0.938rem;
    color: #4a5568;
    line-height: 1.6;
    margin: 0 0 0.75rem 0;
}

.notification-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.notification-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.813rem;
    color: #718096;
}

.notification-meta-item i {
    font-size: 0.875rem;
    color: #a0aec0;
}

/* Actions */
.notification-actions {
    flex-shrink: 0;
    display: flex;
    gap: 0.5rem;
}

.notification-action-btn {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1rem;
}

.notification-action-btn--primary {
    background: rgba(0, 150, 255, 0.1);
    color: #0096ff;
}

.notification-action-btn--primary:hover {
    background: #0096ff;
    color: #ffffff;
    transform: scale(1.1);
}

.notification-action-btn--secondary {
    background: rgba(0, 0, 0, 0.05);
    color: #718096;
}

.notification-action-btn--secondary:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #4a5568;
    transform: scale(1.1);
}

/* ============================================
   EMPTY STATE
   ============================================ */

.notification-empty {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    padding: 4rem 2rem;
    text-align: center;
}

.notification-empty-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: rgba(0, 150, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #0096ff;
}

.notification-empty-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 0.75rem 0;
}

.notification-empty-text {
    font-size: 1rem;
    color: #718096;
    max-width: 500px;
    margin: 0 auto;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 991.98px) {
    .notification-container {
        padding: 3rem 0;
    }

    .notification-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .notification-mark-all-btn {
        width: 100%;
        justify-content: center;
    }

    .notification-item {
        gap: 1rem;
    }
}

@media (max-width: 767.98px) {
    .notification-container {
        padding: 2rem 0;
    }

    .notification-header {
        padding: 1.5rem;
    }

    .notification-header-content {
        flex-direction: column;
        text-align: center;
    }

    .notification-header-icon {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
    }

    .notification-header-title {
        font-size: 1.5rem;
    }

    .notification-item {
        flex-direction: column;
        padding: 1.25rem;
    }

    .notification-indicator {
        display: flex;
        justify-content: center;
    }

    .notification-content-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .notification-badges {
        width: 100%;
    }

    .notification-actions {
        width: 100%;
        justify-content: center;
    }

    .notification-action-btn {
        flex: 1;
        max-width: 120px;
    }

    .notification-meta {
        flex-direction: column;
        gap: 0.75rem;
    }
}

@media (max-width: 575.98px) {
    .notification-header {
        padding: 1.25rem;
    }

    .notification-header-icon {
        width: 50px;
        height: 50px;
        font-size: 1.375rem;
    }

    .notification-header-title {
        font-size: 1.25rem;
    }

    .notification-header-subtitle {
        font-size: 0.875rem;
    }

    .notification-item {
        padding: 1rem;
    }

    .notification-indicator-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .notification-title {
        font-size: 1rem;
    }

    .notification-message {
        font-size: 0.875rem;
    }

    .notification-empty {
        padding: 3rem 1.5rem;
    }

    .notification-empty-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }

    .notification-empty-title {
        font-size: 1.25rem;
    }

    .notification-empty-text {
        font-size: 0.938rem;
    }
}