/* Badge notification style Facebook ABONNEMENT */
.fb-notification-badge {
    background: #ff0000;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 11px;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 5px;
    animation: fbPulse 1.5s infinite;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
    border: 2px solid white;
}

.fb-notification-badge-small {
    background: #ff0000;
    color: white;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    font-size: 10px;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 8px;
    animation: fbPulse 1.5s infinite;
}

@keyframes fbPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 5px rgba(255, 0, 0, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
    }
}

/* Effet de secousse pour attirer l'attention */
@keyframes fbShake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-2px); }
    75% { transform: translateX(2px); }
}

.fb-notification-shake {
    animation: fbShake 0.5s ease-in-out;
}

/* Badge notification style Facebook COMMANDE */
/* Badge notification simple - rond bleu ciel */
.commande-badge-simple {
    background: #2196f3;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 8px;
    animation: badgePulse 2s infinite;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    border: 2px solid white;
}

@keyframes badgePulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}
