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

.callApiBtn {
    position: absolute;
    top: 10px;
    right: 100px;
    z-index: 1000;
    background-color: #2472ca;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.geolocationButton {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1000;
    background-color: #4caf50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

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

.geolocationButton:hover {
    background-color: #45a049;
}

.label {
    position: absolute;
    text-align: center;
    font-size: 14px;
    color: black;
    background-color: transparent;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    white-space: nowrap;
}

.popup {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 20px;
    border-radius: 5px;
    z-index: 1000;
}

.popup-content {
    background: white;
    padding: 20px;
    border-radius: 5px;
}
