/* Styles personnalisés pour la timeline */

/* Style pour les points de la timeline comme sur la capture d'écran 1 */
.resume-single-list {
    position: relative;
    padding-left: 30px;
    margin-bottom: 30px;
}

.resume-single-list::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    height: 12px;
    width: 12px;
    background-color: #f9004d;
    border-radius: 50%;
    z-index: 2;
}

/* Ajustement pour les conteneurs */
.experience-list {
    position: relative;
    padding-left: 15px;
    border-left: 2px solid rgba(0, 0, 0, 0.1);
    margin-left: 5px;
}

/* Style pour la barre rouge verticale comme sur la capture 3 */
.experience-list::after {
    content: "";
    position: absolute;
    left: -5px;
    top: 0;
    height: 100%;
    width: 5px;
    background-color: #f9004d;
    z-index: 1;
}

/* Style pour les boutons d'achat */
.btn-purchase {
    background-color: #f9004d !important;
    color: #ffffff !important;
    border: none !important;
    box-shadow: none !important;
    text-shadow: none !important;
}

.btn-purchase:hover {
    background-color: #d6003f !important; /* Une teinte légèrement plus foncée pour le survol */
    color: #ffffff !important;
}
