@media (min-width: 992px) {
    .navbar-nav .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }

    .nav-item .dropdown-menu .dropdown-item {
        font-size: 15px;
        font-weight: 500;
        color: #71717A;
        margin-bottom: 5px;
    }
}

#notifOffcanvas .notif-item {
    border-bottom: 1px solid #f1f5f9;
    padding: 14px 0;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}
#notifOffcanvas .notif-item:last-child { border-bottom: none; }

#notifOffcanvas .notif-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}
#notifOffcanvas .notif-icon i   { color: #4caf50; font-size: 18px; }
#notifOffcanvas .notif-icon img { width: 44px; height: 44px; object-fit: cover; border-radius: 50%; }

#notifOffcanvas .notif-title { font-weight: 600; font-size: 14px; color: #1e293b; margin-bottom: 3px; }
#notifOffcanvas .notif-body  { font-size: 13px; color: #64748b; margin-bottom: 5px; }
#notifOffcanvas .notif-meta  {
    font-size: 11px; color: #94a3b8;
    display: flex; flex-wrap: wrap; gap: 8px;
    align-items: center; margin-bottom: 5px;
}

#notifOffcanvas .notif-link {
    font-size: 12px;
    color: #0D6821;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #d4f796;
    padding: 2px 10px;
    border-radius: 10px;
}
#notifOffcanvas .notif-link:hover { text-decoration: underline; }

#notifOffcanvas .notif-unread .notif-title::after {
    content: '';
    display: inline-block;
    width: 7px; height: 7px;
    background: #6366f1;
    border-radius: 50%;
    margin-left: 6px;
    vertical-align: middle;
}

#notifMarkReadBtn { font-size: 13px; color: #6366f1; cursor: pointer; border: none; background: none; padding: 0; }
#notifMarkReadBtn:hover { text-decoration: underline; }

#notifEmpty {    
    padding: 40px 0;
    color: #94a3b8;
    font-size: 16px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-weight: 600; 
}

.dropdown-item{
    white-space: normal !important;
}