body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #111;
  color: white;
}

/* 🧭 PANEL IZQUIERDO */
#panel {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1000;
  width: 350px;
  padding: 15px;
  background: rgba(20,20,20,0.95);
  border-radius: 10px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 0 25px rgba(0,0,0,.45);
}

/* 📊 PANEL DE ESTADÍSTICAS (DERECHA) */
#statsPanel {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 1000;
  width: 260px;
  max-height: 80vh;
  overflow-y: auto;
  background: rgba(20,20,20,.92);
  padding: 18px;
  border-radius: 16px;
  color: white;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 0 25px rgba(0,0,0,.45);
}

/* 🗺 MAPA */
#map {
  height: 100vh;
}

/* 🔽 SELECTOR */
select {
  width: 100%;
  padding: 10px;
  font-size: 15px;
  border-radius: 6px;
}

/* 📊 TEXTO ESTADÍSTICAS */
#statsCiudad {
  line-height: 1.6;
  font-size: 14px;
}

/* 🌳 LEYENDA */
.legend {
  background: rgba(20,20,20,0.9);
  padding: 10px;
  border-radius: 8px;
  color: white;
  font-size: 13px;
  line-height: 18px;
}

/* 📱 RESPONSIVE PARA CELULAR */
@media (max-width: 768px) {

  #panel {
    width: 92%;
    left: 4%;
    top: 10px;
    font-size: 13px;
    padding: 10px;
  }

  #statsPanel {
    width: 92%;
    left: 4%;
    right: auto;
    top: auto;
    bottom: 10px;
    max-height: 40vh;
    overflow-y: auto;
  }

  select {
    font-size: 14px;
    padding: 8px;
  }

  h2 {
    font-size: 16px;
  }
}