body, html {
    margin: 0;
    padding: 0;
    height: 100%;
}

#map {
    width: 100vw;
    height: 100vh;
    background-image: url('map.png');
    background-size: contain;
    background-position: center bottom; /* Ajustement de la position de l'image de fond */
    position: relative;
    background-repeat: no-repeat; /* Empêcher la répétition de l'image de fond */
}

.point {
    width: 20px;
    height: 20px;
    background-color: red;
    border-radius: 50%;
    position: absolute;
    cursor: pointer;
}

.line {
    position: absolute;
    border: 1px solid black;
    pointer-events: none;
}

.reset-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: black;
    color: white;
    padding: 15px 30px;
    font-size: 18px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

.reset-btn:hover {
    background-color: #333;
}
