body,
html {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  overflow: hidden;
}

#map {
  height: 100%;
  width: 100%;
  background-color: #e5e3df; /* Color de carga de Google */
}

/* Tarjeta Flotante */
#info-card {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 5;
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  width: 300px;
  transition: opacity 0.3s ease;
}

#info-card.hidden {
  display: none;
}

h2 {
  margin: 0 0 10px 0;
  color: #333;
  font-size: 1.2rem;
}

#stats {
  font-size: 1rem;
  color: #555;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
  font-weight: 600;
}

.legend {
  margin-top: 10px;
}

.legend-item {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
  font-size: 0.9rem;
  color: #666;
}

.color-box {
  width: 18px;
  height: 18px;
  margin-right: 10px;
  border: 2px solid;
  border-radius: 4px;
}

small {
  display: block;
  margin-top: 8px;
  color: #999;
  font-style: italic;
}
