/* ─── Contenedor principal ───────────────────── */
.cobertura-mapa-container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  font-family: inherit;
}

/* ─── Mapa ───────────────────────────────────── */
.cobertura-mapa-map {
  width: 100%;
  height: 500px;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

/* ─── Leyenda ────────────────────────────────── */
.cobertura-legend {
  display: flex;
  gap: 24px;
  justify-content: center;
  padding: 12px 0;
  margin-top: 8px;
}

.cobertura-legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #333;
}

.cobertura-legend-dot {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ─── Tooltip ────────────────────────────────── */
.cobertura-tooltip {
  background: rgba(0, 0, 0, 0.8) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 4px !important;
  padding: 6px 12px !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2) !important;
}

.cobertura-tooltip::before {
  border-top-color: rgba(0, 0, 0, 0.8) !important;
}

/* ─── Zoom controls ──────────────────────────── */
.cobertura-mapa-map .leaflet-control-zoom a {
  background: #fff;
  color: #333;
  border-color: #ddd;
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 16px;
}

.cobertura-mapa-map .leaflet-control-zoom a:hover {
  background: #f5f5f5;
}

/* ─── Responsive ─────────────────────────────── */
@media (max-width: 600px) {
  .cobertura-mapa-map {
    height: 350px;
  }

  .cobertura-legend {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
}
