/* Animation pour les valeurs qui changent */
@keyframes valuePulse {
    0% { background-color: transparent; }
    50% { background-color: rgba(66, 133, 244, 0.15); transform: scale(1.02); }
    100% { background-color: transparent; }
}

.value-updated {
    animation: valuePulse 0.5s ease;
}