/* Personnalisations supplémentaires en plus des styles inline */
.text-highlight {
    background-color: #fffacd;
    padding: 2px 4px;
    border-radius: 3px;
}

.animation-fadeIn {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.keyword-highlight {
    font-weight: bold;
    color: #007bff;
}

/* Personnalisations pour les appareils mobiles */
@media (max-width: 768px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .card-body {
        padding: 1rem;
    }

    h1.display-4 {
        font-size: 2.5rem;
    }

    .star-structure .star-content {
        padding-left: 15px;
    }
}
    /* Ajoutez ceci dans la partie <style> */
.progress-bar-animated {
    animation: progress-bar-stripes 1s linear infinite;
}

@keyframes progress-bar-stripes {
    from { background-position: 1rem 0; }
    to { background-position: 0 0; }
}

.progress {
    height: 1.5rem;
    margin-bottom: 1rem;
}

.progress-bar {
    transition: width 0.5s ease;
}
