/* Notification Bell Styles */
.notification-container {
    position: relative;
    display: flex;
    align-items: center;
    margin-right: 15px;
}

.notification-bell {
    color: var(--text-color);
    font-size: 1.2rem;
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 5px;
}

.notification-bell:hover {
    color: var(--primary-color);
}

.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #e74c3c;
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 0.7rem;
    font-weight: bold;
    min-width: 18px;
    text-align: center;
    border: 2px solid var(--bg-color, #fff);
    animation: popIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.notification-badge.hidden {
    display: none;
}

@keyframes popIn {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .notification-container {
        margin-right: 10px;
    }
}