/* .list_remise_en_etat {
    list-style: circle;
} */
.list_remise_en_etat {
    list-style: none; /* On enlève le cercle par défaut */
    padding-left: 0;   /* On réinitialise l'alignement */
}

.list_remise_en_etat li {
    position: relative;
    padding-left: 30px;      /* Espace pour l'icône */
    margin-bottom: 15px;     /* Espace entre chaque ligne */
    line-height: 1.5;        /* Améliore la lisibilité du texte */
}

/* Ajout de l'icône de checklist */
.list_remise_en_etat li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    /* Utilisation d'une icône checklist en SVG */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%232ecc71'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.top_bar {
    background-image: linear-gradient(rgba(15, 92, 9, 0.5), rgba(0, 0, 0, 0.5)), url('../images/remise_en_etat.webp'); 
    background-size: cover; 
    background-position: center; 
    color: white;
}