/* ── Navigate button ───────────────────────────────────────── */
.map-navigate-btn {
  float: right;
  margin: 0 0 10px 10px;
  padding: 7px 18px;
  border-radius: 6px;
  background: var(--accent);
  color: var(--button-text, #fff);
  border: 1.5px solid var(--accent);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  transition: background .18s, box-shadow .18s;
  outline: none;
}
.map-navigate-btn:hover {
  background: color-mix(in srgb, var(--accent) 80%, black);
  box-shadow: 0 4px 16px rgba(0,0,0,0.13);
}

/* ── Navigate modal inputs ─────────────────────────────────── */
.mapnav-input-wrap { position: relative; width: 100%; }

/* ── Navigate route steps ──────────────────────────────────── */
.navigate-step-img {
  max-width: 320px;
  max-height: 180px;
  border-radius: 6px;
  border: 1px solid var(--border);
  display: block;
  background: var(--surface);
}
.navigate-step-img-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 6px;
}
.navigate-step-destination { color: var(--accent); font-size: 13px; margin-top: 2px; }

/* ── Hide-mobs toggle ──────────────────────────────────────── */
/* Uses shared .hide-toggle / .hide-toggle-check from base.css */
.hide-toggle { margin-left: 10px; }

/* Navigation Modal & Steps */
.navigate-modal {
  /* Overlay tweaks if needed */
}

.navigate-modal-box {
  background: var(--surface);
  border-radius: 14px;
  border: 1.5px solid var(--border);
  box-shadow: 0 8px 32px rgba(80,50,20,0.13);
  padding: 0;
}

.navigate-step {
  background: var(--surface-2);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  margin: 22px 0;
  padding: 18px 18px 14px 18px;
  box-shadow: 0 2px 10px rgba(80,50,20,0.06);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.navigate-step-header {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 10px;
  color: var(--accent);
}

@media (max-width: 600px) {
  .navigate-modal-box {
    min-width: 0;
    max-width: 99vw;
    padding: 0;
  }
  .navigate-step {
    padding: 12px 6px 10px 6px;
  }
}
.map-detail-panel {
  text-align: center;
}
.full-map-image-container {
  display: inline-block;
  margin: 28px auto 18px auto;
  background: var(--surface-2);
  border-radius: 12px;
  width: auto;
  max-width: 100%;
}
.full-map-image {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  max-height: 540px;
  border: 2px solid var(--border, #23242a);
  border-radius: 10px;
  cursor: pointer;
  background: #222;
  transition: border-color 0.2s;
}
.full-map-image:hover {
  border-color: var(--accent, #7aa2f7);
}

.map-bg-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin: 8px 0 4px 0;
}

.map-bg-btn {
  padding: 3px 12px;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--dim);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.map-bg-btn.active {
  background: var(--accent-bg);
  border-color: var(--accent);
  color: var(--accent);
}

.map-bg-btn:hover:not(.active) {
  border-color: var(--dim);
  color: var(--text);
}

.level-filter-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 8px 0 0 0;
}
.level-filter-label {
  font-size: 13px;
  color: var(--dim);
  white-space: nowrap;
}
.level-filter-input {
  width: 72px;
  padding: 4px 8px;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: var(--surface2, rgba(255,255,255,0.04));
  color: var(--text);
  font-size: 13px;
}
.level-filter-input:focus {
  outline: none;
  border-color: var(--accent, #7aa2f7);
}
.level-filter-sep {
  color: var(--dim);
  font-size: 13px;
}

.col-tooltip-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  margin-left: 5px;
  border-radius: 50%;
  border: 1px solid var(--dim);
  color: var(--dim);
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  cursor: help;
  vertical-align: middle;
  opacity: 0.6;
  transition: opacity 0.15s, border-color 0.15s, color 0.15s;
}
.col-tooltip-badge:hover {
  opacity: 1;
  border-color: var(--accent, #7aa2f7);
  color: var(--accent, #7aa2f7);
}

.mob-chip-clickable:hover {
  border-color: var(--accent, #7aa2f7);
  background: var(--accent-bg, rgba(122,162,247,0.12)) !important;
}
