div {   
    border: 0px solid #ba5858;   
}

body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    height: 100vh; /* Ocupa toda la altura de la ventana */
}

#map {
    flex: 1;
    width: 100%;
    height: 100%;
    cursor: default  ; /* Cambia el cursor al pasar por encima del mapa */
}

#map:hover {
    cursor: pointer; /* Cambia el cursor cuando el mouse está sobre el mapa */
}


#button-container {
    margin-bottom: 20px;
}

button {
    display: inline-block;
    padding: 15px 25px;
    font-size: 20px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    outline: none;
    color: #fff;
    background-color: #04AA6D;
    border: none;
    border-radius: 15px;
    box-shadow: 0 9px #999;
    font-family: monospace;
    font-weight: 900;
}

button:hover {background-color: #3e8e41}

button:active {
    background-color: #3e8e41;
    box-shadow: 0 5px #666;
    transform: translateY(4px);
}

button:disabled {
    background-color: gray;
}