body, html {
    margin: 0;
    padding: 0;
    height: 100%;
}

header {
    background-color: #4FBD5A;
    display: flex;
    align-items: center;
    padding: 30px; /* tamaño del borde */
    box-sizing: border-box;
}

#Puerto_Antioquia {
    height: 50px;
    margin-right: 20px;
    display: flex; /* para ubicar el logo automáticamente */
}

header h1 {
    color: white;
    text-align: center;
    flex-grow: 1;
}

/* Ajustes para el mapa */
#mapa {
    height: calc(100% - 100px); /* Altura dinámica considerando la altura del header */
    width: 100%;
    position: relative;
}

/* Estilos para el cuadro de coordenadas */
#coords {
    position: absolute;
    bottom: 10px;
    right: 10px;
    padding: 5px;
    background: white;
    border-radius: 5px;
    font-size: 14px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

/* Ajustes para pantallas pequeñas */
@media(max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
    }

    #Puerto_Antioquia {
        margin-right: 0;
        margin-top: 10px;
    }
}
