/* Ubringit guided tour — overlay, spotlight, and bubble.
   Self-contained styling so it reads the same on any theme. */

.tour-blocker {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: transparent;
}
/* Used only for centered (no-target) steps, where there's no spotlight to dim. */
.tour-blocker--dim {
  background: rgba(13, 27, 42, 0.6);
}

.tour-spotlight {
  position: fixed;
  z-index: 9999;
  display: none;
  border-radius: 10px;
  outline: 3px solid #00BFA6;
  outline-offset: 0;
  box-shadow: 0 0 0 9999px rgba(13, 27, 42, 0.6);
  pointer-events: none;
  transition: left .18s ease, top .18s ease, width .18s ease, height .18s ease;
}

.tour-bubble {
  position: fixed;
  z-index: 10000;
  width: 320px;
  max-width: calc(100vw - 24px);
  box-sizing: border-box;
  background: #ffffff;
  color: #0D1B2A;
  border-radius: 14px;
  padding: 18px 18px 30px;
  box-shadow: 0 14px 44px rgba(13, 27, 42, 0.32);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.5;
}

.tour-title {
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 700;
  color: #0D1B2A;
}
.tour-text {
  margin: 0 0 16px;
  color: #3a4654;
}

.tour-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.tour-progress {
  font-size: 12px;
  color: #8a93a0;
  letter-spacing: .02em;
}
.tour-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.tour-next {
  background: #00BFA6;
  color: #ffffff;
  border: 0;
  border-radius: 8px;
  padding: 9px 18px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}
.tour-next:hover { background: #00a892; }

.tour-back {
  background: none;
  border: 0;
  color: #5a6675;
  font-size: 14px;
  cursor: pointer;
  padding: 9px 6px;
}
.tour-back:hover { color: #0D1B2A; }

.tour-skip {
  position: absolute;
  right: 14px;
  bottom: 8px;
  background: none;
  border: 0;
  color: #9aa3af;
  font-size: 12px;
  text-decoration: underline;
  cursor: pointer;
  padding: 4px;
}
.tour-skip:hover { color: #5a6675; }
