/* public/css/notifications.css */
.dropdown-menu-notification {
    position: absolute;
    z-index: 1000;
    display: none;
    width: 20rem;
    padding: .5rem 0;
    margin: 0;
    font-size: 1rem;
    color: #747d88;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: 10px
}

.unread-notification {
    background-color: rgba(13, 110, 253, 0.1);
    cursor: pointer;
}

.notification-item {
    padding: 0.5rem 1rem;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: flex-start;
}

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

.notification-item i {
    font-size: 1.2rem;
    margin-top: 3px;
}

.notification-item div {
    margin-left: 1rem;
    flex: 1;
}

.notification-item h4 {
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
    font-weight: 500;
}

.notification-item p {
    font-size: 0.8rem;
    margin-bottom: 0.2rem;
    color: #495057;
}

.notification-item .small {
    font-size: 0.7rem;
    color: #6c757d;
}

#notificationBadge {
    position: absolute;
    top: -5px;
    right: -5px;
    font-size: 0.6rem;
    padding: 3px 6px;
}