/* ── Go There — popup button ──────────────────────────────────────── */
.popup-btn-gothere { background: #10b981; }

/* ── Go There — dropdown menu ────────────────────────────────────── */
.gt-menu {
  position: fixed;
  z-index: 9999;
  background: #1e293b;
  border: 1px solid #334155;
  border-radius: 8px;
  padding: 4px;
  min-width: 180px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.gt-menu-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  color: #e2e8f0;
  font-size: 13px;
  font-weight: 500;
  border-radius: 5px;
  text-decoration: none;
  background: none;
  border: none;
  width: 100%;
  cursor: pointer;
  transition: background 0.1s ease;
  box-sizing: border-box;
}
.gt-menu-item:hover { background: #334155; color: #fff; }

.gt-menu-icon { font-size: 15px; line-height: 1; }

.gt-menu-divider {
  height: 1px;
  background: #334155;
  margin: 3px 0;
}

.gt-menu-note {
  padding: 5px 10px 4px;
  font-size: 10px;
  color: #64748b;
  line-height: 1.4;
}

.gt-menu-nopos {
  padding: 10px 12px;
  font-size: 12px;
  color: #64748b;
  font-style: italic;
}
