/* ── Tour overlay ─────────────────────────────────────────────────────────── */
.tour-overlay {
  position: fixed;
  inset: 0;
  /* Above comments toggle (10000), right-panel-sidebar (9998), and everything else */
  z-index: 10100;
  pointer-events: none; /* clicks pass through to spotlight cutout */
  background: transparent;
}

/* The spotlight is a transparent box that sits on top of the target element.
   A huge box-shadow creates the dim mask around it. */
.tour-spotlight {
  position: fixed;
  border-radius: 6px;
  box-shadow:
    0 0 0 4px rgba(99, 179, 237, 0.6),   /* blue ring */
    0 0 0 9999px rgba(0, 0, 0, 0.55);    /* dimming mask */
  transition: top 0.25s ease, left 0.25s ease,
              width 0.25s ease, height 0.25s ease;
  pointer-events: none;
}

/* ── Tooltip card ─────────────────────────────────────────────────────────── */
.tour-tooltip {
  position: fixed;
  z-index: 10200; /* Above overlay (10100) and all panels */
  width: 320px;
  /* Never let the card touch the right-panel-sidebar (50px) or viewport edge */
  max-width: calc(100vw - 70px);
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.22), 0 2px 8px rgba(0, 0, 0, 0.12);
  padding: 18px 20px 14px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #1a1a2e;
  /* enter animation applied via class */
  opacity: 0;
  transform: translateY(6px) scale(0.97);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.tour-tooltip.tour-tooltip-enter {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.tour-tooltip.tour-fade-out {
  opacity: 0;
  transform: translateY(-4px) scale(0.97);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.tour-overlay.tour-fade-out {
  opacity: 0;
  transition: opacity 0.25s ease;
}

/* ── Tooltip header (step counter + skip) ─────────────────────────────────── */
.tour-tooltip-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.tour-step-indicator {
  font-size: 11px;
  color: #888;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.tour-skip-btn {
  background: none;
  border: none;
  padding: 0;
  font-size: 12px;
  color: #aaa;
  cursor: pointer;
  text-decoration: underline;
  line-height: 1;
}
.tour-skip-btn:hover { color: #555; }

/* ── Tooltip title ────────────────────────────────────────────────────────── */
.tour-title {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 8px;
  color: #111;
}

/* ── Tooltip body ─────────────────────────────────────────────────────────── */
.tour-body {
  color: #444;
  margin-bottom: 14px;
}

/* ── Tooltip footer (Back / Next) ─────────────────────────────────────────── */
.tour-footer {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.tour-footer .btn {
  min-width: 80px;
}
