/* Styles principaux (remplaçant les classes Tailwind inline du body) */
body {
    background-color: #f8fafc;
    text-align: left;
    padding: 2rem;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.4s ease-out forwards;
}

.highlight-match {
    transition: all 0.2s ease-in-out;
}
.enable-highlight .highlight-match {
    background-color: #fef08a; /* Jaune pastel */
    color: #854d0e; /* Texte ambre foncé */
    font-weight: 700;
    padding: 0.125rem 0.25rem;
    border-radius: 0.25rem;
}