html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}
 
#map {
  height: 100vh;
}
 
/* Ventana flotante sobre el mapa */
#info {
  position: absolute;
  top: 10px;
  right: 10px;
  max-width: 320px;
  background: #ffffff;
  border: 1px solid #ccc;
  padding: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  z-index: 1000;
  font-family: Arial, sans-serif;
  font-size: 14px;
  display: none;
}
 
#info img {
  max-width: 100%;
  height: auto;
  margin-bottom: 8px;
}