 /* El mapa debe tener un tamaño asignado o no se verá */
body, html { margin: 0; padding: 0; height: 100%; }
#map { height: 100vh; width: 100%; }

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

#map{
    background-color: white;

}

.navbar {
    display: flex;
    justify-content: space-between; 
    align-items: center;            
    background-color: #4F1F91;      
    color: white;
    padding: 15px 30px;             
    position: fixed;                
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;                  
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3); 
}

.logo a {
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
    text-decoration: none;
}

.nav-links ul {
    list-style: none;               
    display: flex;                  
    gap: 20px;                     
}

.leaflet-top, .leaflet-bottom {
    z-index: 500 !important; 
}

