*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --forest-dark:  #1a3520;
  --forest-mid:   #2d5a27;
  --forest-light: #4a7c59;
  --amber:        #e07b2e;
  --bg:           #f2ede3;
  --panel-bg:     #ffffff;
  --text:         #2c2c2c;
  --text-muted:   #717171;
  --border:       #ddd;
  --remove-hover: #fee2e2;
  --remove-text:  #c0392b;
  --panel-width:  300px;
  --header-height:   52px;
  --avail-bar-height: 40px;

  /* Availability status colours — used in JS (STATUS_STYLES) and CSS dots */
  --status-available: #16a34a;
  --status-full:      #dc2626;
  --status-walkup:    #ea580c;
  --status-wic:       #7c3aed;
  --status-no-data:   #9ca3af;
}

html, body {
  height: 100%;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
}

/* Column flex layout: bars size themselves (including when they wrap on
   narrow screens) and the map/panel row absorbs the remaining height. This
   replaces a fixed calc() that broke as soon as a bar wrapped. */
body {
  display: flex;
  flex-direction: column;
}

/* Visually hidden but available to screen readers. */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ── Header ─────────────────────────────────────── */

header {
  height: var(--header-height);
  background: var(--forest-dark);
  color: #fff;
  display: flex;
  align-items: center;
  padding: 0 20px;
  flex-shrink: 0;
}

header h1 {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

header h1 span {
  color: #a8c5a0;
  font-weight: 400;
  margin-left: 8px;
  font-size: 0.95rem;
}

/* ── Layout ──────────────────────────────────────── */

main {
  display: flex;
  flex: 1;
  min-height: 0;
}

#map {
  flex: 1;
  min-width: 0;
}

/* ── Itinerary panel ─────────────────────────────── */

#itinerary-panel {
  width: var(--panel-width);
  flex-shrink: 0;
  background: var(--panel-bg);
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

#panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px 12px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

#panel-header h2 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

/* ── Clear button ─────────────────────────────────── */

#clear-btn {
  font-size: 0.75rem;
  color: var(--remove-text);
  background: none;
  border: 1px solid var(--remove-text);
  border-radius: 4px;
  padding: 3px 9px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

#clear-btn:hover {
  background: var(--remove-text);
  color: #fff;
}

.hidden {
  display: none !important;
}

/* ── Empty state ─────────────────────────────────── */

#empty-state {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 24px;
  text-align: center;
  color: var(--text-muted);
}

.empty-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
  opacity: 0.6;
}

#empty-state p {
  font-size: 0.875rem;
  line-height: 1.55;
}

/* ── Stop list ───────────────────────────────────── */

#stop-list {
  flex: 1;
  overflow-y: auto;
  list-style: none;
  padding: 6px 0;
}

.stop-card {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px 10px 6px;
  border-bottom: 1px solid #f2f2f2;
  transition: background 0.1s;
  background: #fff;
}

.stop-card:last-child {
  border-bottom: none;
}

.stop-card:hover {
  background: #fafafa;
}

.stop-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  width: 22px;
  text-align: center;
}

.stop-info {
  flex: 1;
  min-width: 0;
}

.stop-name {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.stop-meta {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.remove-btn {
  flex-shrink: 0;
  background: none;
  border: none;
  color: #bbb;
  font-size: 1.25rem;
  line-height: 1;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.12s, color 0.12s;
}

.remove-btn:hover {
  background: var(--remove-hover);
  color: var(--remove-text);
}

#itinerary-notice {
  margin: 0;
  padding: 7px 16px;
  background: #fffbeb;
  border-bottom: 1px solid #fde68a;
  color: #92400e;
  font-size: 0.72rem;
  line-height: 1.45;
  flex-shrink: 0;
}

.saved-indicator {
  margin: 0;
  padding: 6px 16px;
  font-size: 0.68rem;
  color: var(--text-muted);
  border-top: 1px solid #f2f2f2;
  flex-shrink: 0;
}

.saved-indicator::before {
  content: "✓ ";
  color: var(--forest-light);
}

.saved-indicator--warn {
  color: #92400e;
  background: #fffbeb;
}

.saved-indicator--warn::before {
  content: "⚠ ";
  color: #b45309;
}

/* ── Itinerary: date column, handle, move controls ── */

.stop-date {
  flex-shrink: 0;
  width: 52px;
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.stop-night {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--forest-light);
}

.stop-day {
  font-size: 0.72rem;
  color: #374151;
  white-space: nowrap;
}

/* Trails sit between camps but hold no date — keep the column for alignment. */
.stop-date--none { width: 52px; }

.stop-card--trail {
  background: #fbfbfa;
}

.stop-card--trail .stop-name {
  font-weight: 400;
  color: #4b5563;
}

.drag-handle {
  flex-shrink: 0;
  width: 18px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: none;
  color: #cbd5e1;
  font-size: 0.8rem;
  line-height: 1;
  cursor: grab;
  padding: 0;
  user-select: none;
  -webkit-user-select: none;
  /* Critical on touch: claims the gesture so the map never pans mid-drag. */
  touch-action: none;
}

.drag-handle:active { cursor: grabbing; }
.stop-card:hover .drag-handle { color: #94a3b8; }

/* Drag is unavailable (vendored Sortable missing) — hide the affordance;
   Move Up / Move Down still work. */
#stop-list.no-drag .drag-handle { display: none; }

.stop-actions {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 1px;
}

.move-btn {
  background: none;
  border: none;
  color: #9ca3af;
  font-size: 0.6rem;
  line-height: 1;
  width: 20px;
  height: 22px;
  cursor: pointer;
  border-radius: 4px;
  padding: 0;
}

.move-btn:hover:not(:disabled) {
  background: #eef5ec;
  color: var(--forest-mid);
}

.move-btn:disabled {
  opacity: 0.25;
  cursor: default;
}

.move-btn:focus-visible,
.drag-handle:focus-visible {
  outline: 2px solid var(--forest-light);
  outline-offset: 1px;
}

/* Sortable drag states */
.stop-card--ghost {
  opacity: 0.4;
  background: #eef5ec;
}

.stop-card--chosen {
  background: #f0f7ee;
}

.stop-card--drag {
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
  border-radius: 6px;
}

/* While dragging, suppress text selection and map interaction. */
body.dragging-itinerary {
  user-select: none;
  -webkit-user-select: none;
}

body.dragging-itinerary #map {
  pointer-events: none;
}

.stop-avail--pending { opacity: 0.7; font-style: italic; }
.stop-avail--outside { color: #92400e; }

/* ── Summary footer ──────────────────────────────── */

#summary {
  flex-shrink: 0;
  border-top: 1px solid var(--border);
  background: #f7f5f0;
  padding: 14px 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.summary-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.summary-row span:last-child {
  font-size: 0.95rem;
  font-weight: 600;
}

/* ── Availability date bar ───────────────────────────────────── */

#availability-bar {
  min-height: var(--avail-bar-height);
  background: #f7f5f0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 6px 16px;
  gap: 10px 20px;
  flex-shrink: 0;
  transition: opacity 0.2s;
}

#availability-bar.loading {
  opacity: 0.55;
  pointer-events: none;
}

#date-control {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
}

#date-control label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-muted);
}

#date-input {
  font-size: 0.8125rem;
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 3px 8px;
  color: var(--text);
  background: #fff;
  cursor: pointer;
  font-family: inherit;
}

#date-input:focus {
  outline: 2px solid var(--forest-light);
  outline-offset: 1px;
}

#status-legend {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.71rem;
  color: var(--text-muted);
  white-space: nowrap;
}

/* ── Status dots (shared by legend, popups, and itinerary cards) */

.status-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
}

.status-dot.available { background: var(--status-available); }
.status-dot.full      { background: var(--status-full); }
.status-dot.walkup    { background: var(--status-walkup); }
.status-dot.wic       { background: var(--status-wic); }
.status-dot.no-data   { background: var(--status-no-data); }

/* ── Campsite availability popup ─────────────────────────────── */

/* Override Leaflet wrapper to remove default padding */
.avail-popup .leaflet-popup-content-wrapper {
  border-radius: 8px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
}

.avail-popup .leaflet-popup-content {
  margin: 0;
  width: 220px !important;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.campsite-popup {
  font-size: 0.8125rem;
  color: var(--text);
}

.popup-header {
  padding: 10px 12px 8px;
  border-bottom: 1px solid #e5e7eb;
}

.popup-name {
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.3;
  color: #111827;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.popup-district {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 1px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.popup-body {
  padding: 8px 12px 6px;
}

.popup-status {
  display: flex;
  align-items: center;
  gap: 5px;
  line-height: 1.4;
}

.popup-quota {
  font-size: 0.75rem;
  color: #374151;
  margin-left: 1px;
}

/* Circled ⓘ for placeholder_100 — cursor:help shows tooltip on hover */
.popup-info {
  font-size: 0.72rem;
  color: var(--text-muted);
  cursor: help;
  margin-left: 1px;
  flex-shrink: 0;
}

.popup-sub {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 3px;
  line-height: 1.45;
}

/* Amber tint for the "not physical capacity" note */
.popup-sub--note {
  color: #92400e;
}

.popup-loading {
  color: var(--text-muted);
  font-style: italic;
}

.popup-footer {
  padding: 7px 12px 10px;
  border-top: 1px solid #e5e7eb;
}

.popup-add-btn {
  width: 100%;
  padding: 6px 0;
  background: var(--forest-mid);
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s;
  font-family: inherit;
}

.popup-add-btn:hover {
  background: var(--forest-dark);
}

.popup-add-btn--added {
  background: #e5e7eb;
  color: var(--text-muted);
  cursor: default;
}

.popup-add-btn--added:hover {
  background: #e5e7eb;
}

/* ── Itinerary stop card — availability badge ────────────────── */

.stop-avail {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 3px;
}

.stop-quota {
  color: #374151;
}

/* ── Freshness / staleness ───────────────────────── */

#freshness {
  font-size: 0.72rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  min-width: 0;
}

#stale-badge {
  background: #fef3c7;
  color: #92400e;
  border: 1px solid #fcd34d;
  border-radius: 4px;
  padding: 1px 6px;
  font-size: 0.68rem;
  font-weight: 600;
}

/* ── Controls bar: search + filters ──────────────── */

#controls-bar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 14px;
  padding: 8px 16px;
  flex-shrink: 0;
}

#search-control {
  position: relative;
  flex: 0 1 260px;
  min-width: 180px;
}

#search-input {
  width: 100%;
  font: inherit;
  font-size: 0.8125rem;
  padding: 5px 10px;
  border: 1px solid var(--border);
  border-radius: 5px;
  background: #fff;
  color: var(--text);
}

#search-input:focus {
  outline: 2px solid var(--forest-light);
  outline-offset: 1px;
}

#search-results {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  z-index: 1200;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.14);
  max-height: 280px;
  overflow-y: auto;
  list-style: none;
}

#search-results li {
  padding: 6px 10px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 1px;
  border-bottom: 1px solid #f1f1f1;
}

#search-results li:last-child { border-bottom: none; }

#search-results li:hover,
#search-results li.active {
  background: #eef5ec;
}

.search-name {
  font-size: 0.8125rem;
  color: #111827;
}

.search-meta {
  font-size: 0.68rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.search-unmapped {
  color: #92400e;
  text-transform: none;
  letter-spacing: 0;
  font-style: italic;
}

/* Detail card for a camp that has no verified map location. */
#offmap-detail {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  z-index: 1200;
  width: 260px;
  max-width: 90vw;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.16);
  overflow: hidden;
}

.popup-unmapped {
  background: #fef3c7;
  color: #92400e;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 12px;
  border-bottom: 1px solid #fcd34d;
}

.offmap-close {
  display: block;
  width: 100%;
  padding: 6px 0;
  border: none;
  border-top: 1px solid var(--border);
  background: #f9fafb;
  color: var(--text-muted);
  font: inherit;
  font-size: 0.75rem;
  cursor: pointer;
}

.offmap-close:hover { background: #f3f4f6; }

/* ── Filters ─────────────────────────────────────── */

#filter-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

#filter-controls select {
  font: inherit;
  font-size: 0.78rem;
  padding: 4px 8px;
  border: 1px solid var(--border);
  border-radius: 5px;
  background: #fff;
  color: var(--text);
  cursor: pointer;
  max-width: 100%;
}

#filter-controls select:focus {
  outline: 2px solid var(--forest-light);
  outline-offset: 1px;
}

#filter-reset {
  font: inherit;
  font-size: 0.75rem;
  padding: 4px 10px;
  border: 1px solid var(--border);
  border-radius: 5px;
  background: #fff;
  color: var(--text-muted);
  cursor: pointer;
}

#filter-reset:hover {
  background: var(--remove-hover);
  color: var(--remove-text);
  border-color: #f5c2c2;
}

#filter-count {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-left: auto;
  white-space: nowrap;
}

/* ── Unresolved camps notice ─────────────────────── */

#unresolved-notice {
  background: #fffbeb;
  border-bottom: 1px solid #fde68a;
  padding: 6px 16px;
  font-size: 0.74rem;
  color: #92400e;
  flex-shrink: 0;
}

#unresolved-notice summary {
  cursor: pointer;
  font-weight: 500;
}

.unresolved-lead {
  margin: 6px 0 4px;
  color: #78350f;
  line-height: 1.5;
}

.unresolved-list {
  list-style: none;
  margin: 0 0 6px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 2px 14px;
}

.unresolved-list li {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 2px 0;
  border-bottom: 1px dotted #fde68a;
}

.unresolved-name    { color: #78350f; }
.unresolved-district {
  color: #b45309;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

/* ── Popup booking actions ───────────────────────── */

.popup-actions {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 7px;
}

.popup-btn {
  display: block;
  text-align: center;
  padding: 6px 8px;
  border-radius: 5px;
  font-size: 0.78rem;
  font-weight: 500;
  text-decoration: none;
  line-height: 1.3;
}

.popup-btn--primary {
  background: #1d4ed8;
  color: #fff !important;
}

.popup-btn--primary:hover { background: #1e40af; }

.popup-link--secondary {
  display: block;
  text-align: center;
  font-size: 0.72rem;
  color: var(--text-muted) !important;
  text-decoration: underline;
}

.popup-link--secondary:hover { color: var(--text) !important; }

/* ── Responsive ──────────────────────────────────── */

/* Tablet: narrow the itinerary panel before stacking it. */
@media (max-width: 900px) {
  :root { --panel-width: 250px; }

  #filter-count {
    margin-left: 0;
    flex-basis: 100%;
  }
}

/* Phone: stack the map above a bottom-sheet itinerary panel. */
@media (max-width: 680px) {
  header { padding: 0 12px; }
  header h1 { font-size: 0.95rem; }
  header h1 span { display: block; margin-left: 0; font-size: 0.72rem; }

  #availability-bar,
  #controls-bar {
    padding: 8px 12px;
  }

  /* Legend is redundant with popup text on small screens. */
  #status-legend { display: none; }

  #date-control { flex: 0 0 auto; }
  #date-input { font-size: 16px; }   /* 16px avoids iOS zoom-on-focus */

  #search-control { flex: 1 1 100%; }
  #search-input   { font-size: 16px; }

  /* Three filters share one row so the bar stays short. */
  #filter-controls {
    flex: 1 1 100%;
    gap: 6px;
    flex-wrap: nowrap;
  }
  #filter-controls select {
    flex: 1 1 0;
    min-width: 0;
    font-size: 0.75rem;
    padding: 4px 4px;
  }
  #filter-reset { flex: 0 0 auto; }

  #freshness { font-size: 0.68rem; gap: 6px; }

  #offmap-detail { width: 100%; }

  .unresolved-list { grid-template-columns: 1fr; }

  /* Map on top, itinerary as a scrollable sheet underneath.
     Sizes are relative to <main>, not the viewport: vh units ignore the
     header and control bars and pushed the panel below the fold. */
  main {
    flex-direction: column;
  }

  #map {
    flex: 1 1 auto;
    min-height: 160px;
  }

  #itinerary-panel {
    width: 100%;
    flex: 0 1 auto;
    max-height: 40%;
    border-left: none;
    border-top: 1px solid var(--border);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.07);
  }

  /* Popups must never exceed the viewport. */
  .avail-popup .leaflet-popup-content {
    width: 230px !important;
    max-width: calc(100vw - 60px) !important;
  }

  /* Touch targets of ~44x44 px. The visible glyphs stay small; the hit area is
     grown with padding and pulled back with negative margin so the rows do not
     become tall. */
  .drag-handle,
  .move-btn,
  .remove-btn {
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .drag-handle {
    font-size: 1rem;
    color: #94a3b8;
    /* Keep the row compact despite the 44px target. */
    margin: -7px -6px;
  }

  .move-btn {
    font-size: 0.72rem;
    margin: -9px -6px;
  }

  .remove-btn {
    font-size: 1.35rem;
    margin: -9px -4px;
  }

  .stop-actions { gap: 0; }

  .stop-card {
    padding: 11px 8px 11px 2px;
    gap: 4px;
    min-height: 56px;
  }

  .stop-date, .stop-date--none { width: 46px; }

}

/* ── Season-ended banner ─────────────────────────────── */

#season-ended {
  margin: 0;
  padding: 8px 16px;
  background: #fef3c7;
  border-bottom: 1px solid #fcd34d;
  color: #92400e;
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.45;
  flex-shrink: 0;
}

/* Disabled date inputs read as unavailable rather than merely inert. */
#date-input:disabled,

/* Add button when no valid availability date exists for a new stay. */
.popup-add-btn--blocked {
  background: #e5e7eb;
  color: var(--text-muted);
  cursor: not-allowed;
}

.popup-add-btn--blocked:hover {
  background: #e5e7eb;
}

/* ── Advance-reservation season footnote ─────────────── */

.popup-sub--season {
  color: var(--text-muted);
  font-size: 0.68rem;
  font-style: italic;
  margin-top: 2px;
}

/* Itinerary rows for dates we cannot report live availability for. Grey and
   neutral: these are unknowns, not refusals. */
.stop-avail--outside {
  color: var(--text-muted);
  cursor: help;
}

/* ── Trip-start control ──────────────────────────────── */

/* ── Explicit trip-shift action ──────────────────────── */

/* Shown only when the browsed date differs from the stored trip start. The
   itinerary never moves on its own; this is the deliberate action. */
#shift-trip-btn {
  width: 100%;
  margin-top: 8px;
  padding: 7px 10px;
  background: #fff;
  color: var(--forest-dark);
  border: 1px solid var(--forest-mid);
  border-radius: 5px;
  font-size: 0.76rem;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.15s;
}

#shift-trip-btn:hover { background: #f0f7f2; }

/* "View next itinerary night" — returns the map to the date a new camp would
   actually occupy, restoring the normal Add control. */
.popup-add-btn--jump {
  margin-top: 6px;
  background: #fff;
  color: var(--forest-dark);
  border: 1px solid var(--forest-mid);
  cursor: pointer;
}

.popup-add-btn--jump:hover { background: #f0f7f2; }
