body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    height: 100%;
}

#map {
    width: 100%;
    height: 100%;
}

#distanceDisplay {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 10px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    display: block;
}

 /* Stil za dugme koje prikazuje razdaljinu */
 #show-distance-btn {
    display: none;
    position: absolute;
    bottom: 20px;
    right: 20px;
    padding: 10px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    z-index: 1000; /* Osiguraj da dugme bude iznad mape */
}

#show-distance-btn:hover {
    background-color: #0056b3;
}
