.notification-menu {
    box-shadow: 0 2px 8px rgba(0,0,0,.15);
}

.notification-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: .75rem;
    border-radius: 4px;
    margin-bottom: .5rem;
    background-color: #f8f9fa;
    transition: background-color .2s ease;
    border-bottom: 1px solid #eee;
}

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

.notification-item:last-child {
    margin-bottom: 0;
}

.notification-badge {
    font-size: 11px;
    padding: 2px 6px;
    top: -2px;
    right: -2px;
}

.loading-spinner {
    width: 1rem;
    height: 1rem;
}

#notifications-dropdown .dropdown-toggle::after {
    display: none;
}

.notification-content {
    flex-grow: 1;
    margin-right: 10px;
    font-size: 13px;
    color: #666;
}

.notification-time {
    font-size: 11px;
    color: #999;
    margin-top: 4px;
}

.notification-actions {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 2px;
}

.notification-actions .btn {
    padding: 4px;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.notification-actions .btn i {
    line-height: 1;
}