/* Animations globales */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.quiz-container {
    animation: fadeIn 0.5s ease-in-out;
}

/* Cartes */
.card {
    transition: all 0.3s ease;
    border-radius: 10px;
}

.card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Badges personnalisés */
.badge-xl {
    font-size: 1.2rem;
    padding: 10px 15px;
}

/* Tables */
.table-hover tbody tr:hover {
    background-color: #f8f9fa;
    cursor: pointer;
}

/* Boutons */
.btn-xl {
    font-size: 1.2rem;
    padding: 15px 30px;
}

/* Progress bar animée */
.progress-bar {
    transition: width 0.5s ease;
}

/* Responsive */
@media (max-width: 768px) {
    .answer-btn {
        font-size: 0.9rem;
        padding: 10px;
    }

    h1,
    h2 {
        font-size: 1.5rem;
    }
}
