/* Styles pour les pastilles de notification */
.notification-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #f44336;
    color: white;
    border-radius: 50%;
    padding: 0;
    min-width: 18px;
    min-height: 18px;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    line-height: 18px;
    box-sizing: border-box;
    box-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

/* S'assurer que l'icône du message a une position relative pour le badge */
.message-icon {
    position: relative;
    display: inline-block;
}

/* Pour les grands nombres, adapter la forme du badge */
.notification-badge.large {
    border-radius: 10px;
    padding: 0 4px;
    min-width: 20px;
}