/* Guided tour overlay */
.gh-tour-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 9998;
  pointer-events: auto;
}

.gh-tour-tooltip {
  position: absolute;
  max-width: 320px;
  background: #fff;
  border-radius: 12px;
  padding: 1rem 1rem 0.75rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  z-index: 9999;
  font-family: system-ui, sans-serif;
}

.gh-tour-tooltip h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 600;
}

.gh-tour-tooltip p {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
}

.gh-tour-tooltip-footer {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

.gh-tour-btn {
  border: none;
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  font-size: 0.8rem;
  cursor: pointer;
}

.gh-tour-btn-primary {
  background: #2563eb;
  color: #fff;
}

.gh-tour-btn-ghost {
  background: transparent;
  color: #333;
}

.gh-tour-highlight {
  position: relative;
  z-index: 9999 !important;
  box-shadow: 0 0 0 3px rgba(37,99,235,0.65);
  border-radius: 8px;
}
