/* Barre de progression horizontale en haut */
.scrollLevel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background-color: #090c15ff;
    z-index: 1000000;
    overflow: visible;
    max-width: 100svw;
}

.indicatorScroll {
    height: 100%;
    background-color: #5cf7f1ff;
    width: 0%; /* La largeur sera modifiée par JS en fonction du scroll */
    box-shadow: #5cf7f1ff 0px 3px 10px;
}

/* Points pour chaque section */
.node-section {
    position: absolute;
    bottom: -2px;
    width: 10px;
    height: 10px;
    background-color: #db6bcdff;
    border: 1px solid transparent;
    transform: translate(-50%,50%) rotate(45deg);
}
.node-section:hover {
    box-shadow: #db6bcdff 0px 0px 10px;
    border: 1px solid white;
}

.scroll-section{
    padding-top: 25px;
}
