.notification-bell {
    position: relative;
    display: inline-block;
}

.bell-button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.4rem;
    position: relative;
}

.badge {
    position: absolute;
    top: -4px;
    right: -8px;
    background: #e74c3c;
    color: #fff;
    border-radius: 50%;
    font-size: 0.7rem;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-dropdown {
    position: absolute;
    right: 0;
    top: 2.2rem;
    width: 320px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    z-index: 1000;
    max-height: 400px;
    overflow-y: auto;
    padding: 0.5rem 0;
}

.notification-item {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
}

.notification-item.unread {
    background: #f0f6ff;
}

.notification-item:hover {
    background: #e8f0fe;
}

.notification-item strong {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.notification-item p {
    margin: 0;
    font-size: 0.82rem;
    color: #555;
}

.notification-item small {
    color: #999;
    font-size: 0.75rem;
}

.no-notifications {
    padding: 1rem;
    text-align: center;
    color: #999;
}

.mark-all-read {
    display: block;
    width: 100%;
    background: none;
    border: none;
    padding: 0.5rem;
    color: #3a7bd5;
    cursor: pointer;
    font-size: 0.82rem;
}
