 /* Header Notification Bell Styles - Modern & Professional */
 .header-notification-wrapper {
    position: relative;
}

.header-notification-btn {
    position: relative;
    background: transparent;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #000;
}

.header-notification-btn:hover {
    background: #f5f5f5;
    transform: scale(1.05);
}

.header-notification-btn i {
    font-size: 1.2rem;
}

.header-notification-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    background: linear-gradient(135deg, #ff4757 0%, #ff6348 100%);
    color: white;
    border-radius: 10px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    font-size: 0.65rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(255, 71, 87, 0.4);
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* Dropdown Menu */
.header-notification-dropdown {
    width: 420px;
    max-height: 600px;
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 0;
    margin-top: 10px;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Dropdown Header */
.notification-dropdown-header {
    padding: 16px 20px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.notification-dropdown-header h6 {
    font-size: 1rem;
    font-weight: 700;
    color: #000;
    margin: 0;
}

.btn-link-custom {
    background: none;
    border: none;
    color: #1a73e8;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    text-decoration: none;
}

.btn-link-custom:hover {
    text-decoration: underline;
}

/* Dropdown Body */
.notification-dropdown-body {
    max-height: 400px;
    overflow-y: auto;
}

.notification-dropdown-body::-webkit-scrollbar {
    width: 6px;
}

.notification-dropdown-body::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.notification-dropdown-body::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

/* Notification Item */
.notification-dropdown-item {
    display: flex;
    padding: 14px 20px;
    border-bottom: 1px solid #f8f9fa;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
    position: relative;
    gap: 12px;
}

.notification-dropdown-item:hover {
    background: #f8f9fa;
}

.notification-dropdown-item:last-child {
    border-bottom: none;
}

.notification-dropdown-item.unread {
    background: #f0f7ff;
}

.notification-dropdown-item.unread:hover {
    background: #e6f2ff;
}

/* Notification Icon */
.notification-icon-wrapper {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.notification-icon-wrapper.text-success {
    background: #d4edda;
    color: #155724;
}

.notification-icon-wrapper.text-warning {
    background: #fff3cd;
    color: #856404;
}

.notification-icon-wrapper.text-danger {
    background: #f8d7da;
    color: #721c24;
}

.notification-icon-wrapper.text-info {
    background: #d1ecf1;
    color: #0c5460;
}

.notification-icon-wrapper.text-primary {
    background: #e7f3ff;
    color: #1a73e8;
}

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

.notification-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #000;
    margin: 0 0 4px 0;
    line-height: 1.3;
}

.notification-message {
    font-size: 0.85rem;
    color: #666;
    margin: 0 0 6px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.notification-time {
    font-size: 0.75rem;
    color: #999;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.notification-time i {
    font-size: 0.7rem;
}

/* Unread Dot */
.notification-unread-dot {
    width: 8px;
    height: 8px;
    background: #1a73e8;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 16px;
}

/* Empty State */
.notification-empty {
    text-align: center;
    padding: 60px 20px;
}

.notification-empty i {
    font-size: 3rem;
    color: #e0e0e0;
    margin-bottom: 12px;
}

.notification-empty p {
    color: #999;
    font-size: 0.9rem;
    margin: 0;
}

/* Dropdown Footer */
.notification-dropdown-footer {
    padding: 12px 20px;
    border-top: 1px solid #f0f0f0;
    text-align: center;
    background: #fafafa;
    border-radius: 0 0 12px 12px;
}

.view-all-link {
    color: #1a73e8;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.2s;
}

.view-all-link:hover {
    color: #0d47a1;
    gap: 6px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .header-notification-dropdown {
        width: 340px;
        right: -20px !important;
    }

    .notification-dropdown-item {
        padding: 12px 16px;
    }

    .notification-icon-wrapper {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .header-notification-dropdown {
        width: 90vw;
        max-width: 340px;
    }
}


  /* Header Notification Bell Styles */
  .header-notification-wrapper {
    position: relative;
}

.header-notification-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    z-index: 99999 !important;
    /* Make sure it's on top */
    width: 420px;
    max-height: 600px;
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 0;
    background: white;
    /* Important! */
    animation: slideDown 0.3s ease;
}

/* Rest of your existing styles... */