/* elevation-profile.css — Elevation profile chart in feature details modal */

.wm-elevation-container {
  padding: 4px 0;
}

.wm-elev-stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
  margin-bottom: 8px;
}

.wm-elev-stat {
  text-align: center;
  font-size: 0.7rem;
  color: #555;
  line-height: 1.3;
}

.wm-elev-stat strong {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #888;
}

.wm-elev-chart-wrap {
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  background: #fafafa;
}

.wm-elev-chart-wrap svg {
  width: 100%;
  height: auto;
}

.wm-elev-hover-info {
  font-size: 0.75rem;
  color: #333;
  padding: 4px 0;
  min-height: 1.4em;
}

.wm-elev-legend {
  display: flex;
  gap: 10px;
  padding: 4px 0;
  font-size: 0.65rem;
  color: #888;
}

.wm-elev-legend i {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  margin-right: 3px;
  vertical-align: middle;
}

/* Map hover marker */
.wm-elev-map-marker {
  width: 12px;
  height: 12px;
  background: #6366f1;
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
