/* Map page — Leaflet overrides */
#map {
  height: 580px;
  border-radius: 5px;
  border: 1px solid var(--border);
}

.legend {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 10px;
  font-size: 13px;
}
.legend-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 4px;
}

.progress-bar {
  height: 3px;
  background: var(--border);
  border-radius: 2px;
  margin-top: 6px;
  overflow: hidden;
  display: none;
}
.progress-fill {
  height: 100%;
  background: var(--sepia);
  transition: width .3s;
}
