.notification-bell {
    position: relative;
    display: inline-block;
    font-size: 1.5rem;
    color: #aaa; /* gris suave */
    transition: color 0.3s ease;
}

/* Estado con notificaciones */
.notification-bell.has-unread i {
  color: white;
}

.notification-count {
    position: absolute;
    top: -6px;
    right: -10px;
    background-color: #e74a3b;
    color: white;
    font-size: 0.7rem;
    font-weight: bold;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}