body {
    padding: 0;
    margin: 0;
    overflow: hidden; /* Evita scroll innecesario */
}

html, body, #map {
    height: 100%;
    width: 100%;
}

.navbar {
    position: fixed; /* Fija el navbar en la parte superior */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000; /* Se mantiene sobre el mapa */
    background-image: url(header.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Ajuste del body para evitar que el navbar tape el contenido */
body {
    padding-top: 65px; /* Ajusta esto según la altura de tu navbar */
}

/* Estilos del texto del navbar */
.ngr {
    font-weight: 700;
    font-style: normal;
    letter-spacing: -0.5px;
    word-spacing: 2px;
    font-size: 24px;
    text-decoration: none;
    color: #000;
    cursor: default;
}


#mapBtn{
    position: relative; top: 20px; left: 20px; z-index: 1000;
}