/* Backdrop */
.tour-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  pointer-events: auto; /* allow clicks to close if enabled */
}

/* Centered dialog */
.tour-overlay {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90vw;
  max-width: 600px;
  background: var(--white-colour);
  border-radius: 1vmin;
  border: 1vmin solid var(--light-colour);
  box-shadow: rgba(9, 30, 66, 0.25) 0px 1px 1px,
    rgba(9, 30, 66, 0.13) 0px 0px 1px 1px, rgba(0, 0, 0, 0.2) 0 3.5vmin 0 -2vmin;
  padding: 3vmin;
  user-select: none;
}

/* Dialog content */
.tour-title {
  font-size: 2.5vmin;
  font-weight: 700;
  color: var(--dark-colour);
  margin-bottom: 1vmin;
}
.tour-text {
  font-size: 1.75vmin;
  font-weight: 300;
  color: var(--grey-colour);
  min-height: 8vmin;
  display: flex;
  align-items: center;
}

#tour-step-count {
  font-size: 1.5vmin;
  font-weight: 700;
  color: var(--grey-colour);
}
.tour-actions {
  display: flex;
  gap: 1vmin;
  justify-content: space-between;
  align-items: center;
}

.tour-actions .simpleButton p {
  font-weight: 500;
}

/* -------------------------------------------------------------------------- */
/*                                  HIGHLIGHT                                 */
/* -------------------------------------------------------------------------- */

.tour-highlight {
  box-shadow: none !important;
  box-shadow: 0 0 0 0.5vmin #ffda79, 1.5vmin 1.5vmin 0 0 rgba(0, 0, 0, 0.2) !important;
  transform: scale(1.1) !important;
  transition: none !important;
  transition: transform 0.02s ease !important;
}
