/* ===========================
   NOTIFICATION DROPDOWN
   =========================== */

   .notification-dropdown .btn-link {
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none;
    position: relative;
}

.notification-dropdown .btn-link:hover {
    color: white !important;
}

.scrolled .notification-dropdown .btn-link {
    color: rgba(255, 255, 255, 0.8) !important;
}

.notification-badge {
    font-size: 0.6rem !important;
    padding: 0.2rem 0.45rem !important;
    min-width: 18px;
}

.notification-dropdown-menu {
    width: 360px;
    max-height: 480px;
    border: none;
    border-radius: 16px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    padding: 0;
    overflow: hidden;
}

.notification-dropdown-menu .dropdown-header {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #e2e8f0;
    background: #f8fafc;
}

.notification-dropdown-body {
    max-height: 340px;
    overflow-y: auto;
}

.notification-dropdown-item {
    display: flex;
    gap: 0.75rem;
    padding: 0.85rem 1.25rem;
    text-decoration: none;
    color: #1e293b;
    border-bottom: 1px solid #f1f5f9;
    transition: background 0.2s ease;
}

.notification-dropdown-item:hover {
    background: #f8fafc;
    color: #1e293b;
}

.notification-dropdown-item.unread {
    background: #eff6ff;
    border-left: 3px solid #2563eb;
}

.notif-drop-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    background: rgba(37, 99, 235, 0.08);
}

.notif-drop-content {
    flex: 1;
    min-width: 0;
}

.notif-drop-content strong {
    display: block;
    font-size: 0.85rem;
    line-height: 1.3;
}

.notif-drop-content p {
    margin: 0.2rem 0;
    font-size: 0.78rem;
    color: #64748b;
    line-height: 1.4;
}

.notif-drop-content small {
    font-size: 0.7rem;
    color: #94a3b8;
}

.dropdown-footer {
    padding: 0.75rem;
    border-top: 1px solid #e2e8f0;
    background: #f8fafc;
}

/* ===========================
   NOTIFICATION LIST PAGE
   =========================== */

.notifications-page {
    background: #f8fafc;
    min-height: 100vh;
}

.notification-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.notification-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: white;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    text-decoration: none;
    color: #1e293b;
    transition: all 0.3s ease;
    position: relative;
}

.notification-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    color: #1e293b;
}

.notification-item.unread {
    background: #eff6ff;
    border-color: #bfdbfe;
}

.notification-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.notification-body {
    flex: 1;
    min-width: 0;
}

.notification-title {
    font-size: 0.95rem;
}

.notification-message {
    font-size: 0.85rem;
    color: #64748b;
    margin: 0.25rem 0 0;
    line-height: 1.5;
}

.notification-time {
    white-space: nowrap;
    font-size: 0.75rem;
}

.notification-dot {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2563eb;
}

@media (max-width: 576px) {
    .notification-dropdown-menu {
        width: calc(100vw - 2rem);
        max-width: 300px;
        right: -0.5rem !important;
    }
}