.notification-badge {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 0.7rem;
    padding: 0.2rem 0.4rem;
}

.notification-menu {
    width: 350px;
    max-height: 500px;
    overflow-y: auto;
}

.notification-items {
    max-height: 400px;
    overflow-y: auto;
}

.dropdown-item.unread {
    background-color: rgba(13, 110, 253, 0.05);
}

.dropdown-item:hover {
    background-color: rgba(13, 110, 253, 0.1);
}

.notification-title {
    font-size: 0.9rem;
    font-weight: 500;
}

.notification-message {
    font-size: 0.85rem;
}

.notification-details {
    font-size: 0.8rem;
    color: #6c757d;
    margin-top: 0.2rem;
}

.notification-filter {
    font-size: 0.8rem;
    padding: 0.2rem 0.4rem;
    color: #6c757d;
}

.notification-filter:hover {
    color: #0d6efd;
    text-decoration: none;
}

.notification-filter.active {
    color: #0d6efd;
    font-weight: 500;
}

.notification-item {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    position: relative;
    transition: background-color 0.2s;
}

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

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

.notification-group {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.notification-group-header {
    padding: 0.5rem 1rem;
    font-weight: 500;
    color: #666;
    font-size: 0.9rem;
}

.notification-priority-high {
    border-left: 4px solid #dc3545;
}

.notification-priority-medium {
    border-left: 4px solid #ffc107;
}

.notification-priority-low {
    border-left: 4px solid #0dcaf0;
}

.notification-actions {
    margin-top: 0.5rem;
    display: flex;
    gap: 0.5rem;
}

.notification-action-btn {
    padding: 0.25rem 0.5rem;
    font-size: 0.8rem;
    border-radius: 4px;
    border: 1px solid rgba(0,0,0,0.1);
    background: transparent;
    color: #666;
    cursor: pointer;
    transition: all 0.2s;
}

.notification-action-btn:hover {
    background-color: #f8f9fa;
    border-color: rgba(0,0,0,0.2);
}

.notification-stats {
    padding: 0.5rem 1rem;
    background-color: #f8f9fa;
    font-size: 0.8rem;
    color: #666;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.notification-search {
    padding: 0.5rem 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.notification-search input {
    width: 100%;
    padding: 0.25rem 0.5rem;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 4px;
    font-size: 0.9rem;
}
