/* Animation bounceIn manquante dans animate.css */

@keyframes bounceIn {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }
    50% {
        transform: scale(1.05);
        opacity: 1;
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
    }
}

.animated.bounceIn {
    animation-name: bounceIn;
    animation-duration: 0.75s;
}

