body {
    margin: 0;
    padding: 0;
    height: 100vh;
    width: 100vw;
    font-family: 'alexandria', sans-serif;
    overflow-x: hidden;
}

html {
    overflow-x: hidden;
}

#map {
    height: 90vh;
    width: 100%;
    z-index: 1;
    margin-top: -2vh;
}

.header {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    background-color: #273909;
    color: white;
    padding: 10px;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-small {
    width: 50px;
    height: 50px;
}

.offcanvas-header {
    background-color: #273909;
    color: white;
}

.change-parcours-btn {
    background-color: #e67e22;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 14px;
}

.places-panel {
    position: absolute;
    bottom: 12vh;
    right: 10px;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 5px;
    padding: 10px;
    max-width: 200px;
    z-index: 1000;
    max-height: 200px;
    overflow-y: auto;
}

.places-panel h6 {
    margin: 0;
    text-align: center;
    color: #273909;
}

.places-panel ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.places-panel li {
    padding: 4px 0;
    border-bottom: 1px solid #bfbfbf;
    font-size: 10px;
}

.marker-icon {
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.5));
}

#status {
    padding-top: 50px;
    padding-bottom: 3vh;
    -webkit-clip-path: url(#status-clip);
    clip-path: url(#status-clip);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding-inline: 4px;
    background-color: #273909;
    color: white;
    text-align: center;
    z-index: 1000;
    margin: auto;

    max-width: 100vw;
    width: 100%;
    box-sizing: border-box;
    overflow-x: auto;
    font-size: 12px;
}

.collapsing {
    transition: none !important;
}

.custom-number-icon .circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #273909;
    /* non visité */
    color: white;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.custom-number-icon.visited .circle {
    background-color: #e67e22;
    /* visité = orange */
}

.custom-number-icon.non-visited .circle {
    background-color: #273909;
    /* non visité = vert foncé */
}
/* Prochain point (vert menthe) */
.custom-number-icon.next-point .circle {
    background-color: #CFEDCC;
    border: 2px solid #30652b;
    color: #000;
    animation: nextPointPulse 1.5s infinite; /* Pulsation continue */  
}

@keyframes nextPointPulse {
    0%   { box-shadow: 0 0 0 0 #00ddff; }
    70%  { box-shadow: 0 0 0 15px rgba(0, 255, 127, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 255, 127, 0); }
}
