.tcpl-tour-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9998;
}

.tcpl-tour-shield {
  position: fixed;
  inset: 0;
  background: transparent;
  pointer-events: auto;
  z-index: 9997;
}

.tcpl-tour-highlight {
  position: absolute;
  border: 2px solid #fff;
  border-radius: 14px;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.2), 0 0 0 9999px rgba(15, 23, 42, 0.65);
  pointer-events: none;
  transition: transform 0.2s ease, width 0.2s ease, height 0.2s ease;
}

.tcpl-tour-tooltip {
  position: absolute;
  max-width: 320px;
  background: #fff;
  color: #111827;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 18px 35px rgba(15, 23, 42, 0.25);
  z-index: 10000;
  pointer-events: auto;
}

.tcpl-tour-tooltip h4 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.tcpl-tour-tooltip p {
  margin: 0 0 12px;
  line-height: 1.4;
}

.tcpl-tour-step {
  font-size: 0.85rem;
  color: #6b7280;
  margin-bottom: 6px;
  display: block;
}

.tcpl-tour-controls {
  display: flex;
  gap: 8px;
}

.tcpl-tour-controls button {
  flex: 1 1 auto;
}

.tcpl-tour-replay {
  margin: 10px 0 18px;
  font-size: 0.9rem;
}

.tcpl-tour-replay a {
  text-decoration: underline;
}

.tcpl-tour-hub-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 18px;
}

.tcpl-tour-card {
  border: 1px solid rgba(15, 23, 42, 0.15);
  border-radius: 12px;
  padding: 16px;
  background: #fff;
}

.tcpl-tour-card h3 {
  margin-top: 0;
}

.tcpl-tour-settings {
  margin: 12px 0 20px;
  padding: 12px 16px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 10px;
  background: #fff;
}

.tcpl-tour-settings ul {
  margin: 8px 0 0 18px;
  padding: 0;
}

.tcpl-tour-settings li {
  margin-bottom: 4px;
}

.tcpl-demo {
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 12px;
  padding: 18px;
  background: #fff;
  margin-bottom: 24px;
}

.tcpl-demo-banner {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.15);
  color: #1f2937;
  font-weight: 600;
}

.tcpl-form--demo input,
.tcpl-form--demo textarea,
.tcpl-form--demo select,
.tcpl-form--demo button {
  pointer-events: none;
}

.tcpl-demo-disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

body.tcpl-tour-active {
  overflow: hidden;
}
