/* Container global */
.skill-container {
    margin-bottom: 25px;
    font-family: Georgia, "Times New Roman", Times, serif;
}

/* Texte au-dessus des barres */
.skill-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 18px; /* Harmonisé avec votre liste précédente */
    color: #2d2d2d;
}

/* Barre de fond grise */
.skill-bar-bg {
    background-color: #eee;
    height: 6px;
    width: 100%;
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

/* Barre turquoise animée */
.skill-bar-fill {
    background-color: #26b9bd;
    height: 100%;
    border-radius: 3px;
    width: 0%; /* Départ à 0 pour l'animation */
    
    /* Animation au chargement */
    animation: fillProgress 2s ease-out forwards;
}

/* Définition de l'animation */
@keyframes fillProgress {
    from {
        width: 0%;
    }
    to {
        width: var(--fill-width);
    }
}

/* Optionnel : délais décalés pour un effet plus dynamique */
.skill-container:nth-child(2) .skill-bar-fill { animation-delay: 0.2s; }
.skill-container:nth-child(3) .skill-bar-fill { animation-delay: 0.4s; }
.skill-container:nth-child(4) .skill-bar-fill { animation-delay: 0.6s; }