/* Notification Styles */

.notification-item {
    transition: background-color 0.2s ease;
}

.notification-item:hover {
    background-color: rgba(0, 0, 0, 0.02);
}

.notification-item.read {
    opacity: 0.7;
}

.notification-item.read h6,
.notification-item.read p {
    color: #6c757d !important;
}

.notification-actions {
    opacity: 0;
    transition: opacity 0.2s ease;
}

.notification-item:hover .notification-actions {
    opacity: 1;
}

.notification-actions .btn-link {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
}

.notification-actions .btn-link:hover {
    text-decoration: none;
}

#notificationBadge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #dc3545;
    color: white !important;
    border-radius: 10px;
    padding: 2px 6px;
    font-size: 0.7rem;
    font-weight: 600;
    min-width: 18px;
    height: 18px;
    text-align: center;
    line-height: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Notification dropdown */
#notificationItemsTabContent {
    max-height: 400px;
    overflow-y: auto;
}

#notificationList {
    min-height: 100px;
}

/* Empty state */
#notificationList .text-center {
    padding: 2rem 1rem;
}


