#map {
  height: calc(100vh - 52px - 68px - 120px);
  min-height: 280px;
}

.legend-strip {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 10px 14px;
  display: flex;
  gap: 14px;
  overflow-x: auto;
  flex-shrink: 0;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.legend-line {
  width: 18px;
  height: 3px;
  border-radius: 2px;
  flex-shrink: 0;
}

.legend-item span {
  font-size: 11px;
  color: var(--muted);
  font-family: var(--font-mono);
}

.kos-panel {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 10px 14px;
  height: 120px;
  overflow-y: auto;
  flex-shrink: 0;
}

.kos-panel h3 {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.kos-list { display: flex; flex-direction: column; gap: 5px; }

.kos-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 10px;
  border-radius: 7px;
  background: var(--bg3);
  border: 1px solid var(--border);
  font-size: 12px;
  cursor: pointer;
  transition: border-color .2s;
}

.kos-item:hover { border-color: var(--accent); }

.kos-name {
  font-weight: 600;
  color: var(--text);
  font-size: 12px;
}

.kos-detail {
  color: var(--muted);
  font-size: 10px;
  margin-top: 1px;
}
