/* Tutorial tour overlay */
.smr-tour-overlay {
  position: fixed;
  inset: 0;
  z-index: 10050;
  background: rgba(0, 0, 0, 0.62);
  display: block;
  /* keep tutorial message below the topbar */
  padding: 0;
  /* block clicks outside highlighted element */
  pointer-events: auto;
}
.smr-tour-card {
  width: min(720px, 100%);
  position: fixed;
  left: 50%;
  top: 90px;
  transform: translateX(-50%);
  margin: 0 18px;
  z-index: 10080;
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  padding: 14px 14px 12px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
  pointer-events: auto;
}
.smr-tour-title {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 6px;
}
.smr-tour-body {
  font-size: 15px;
  color: var(--text);
  line-height: 1.45;
}
.smr-tour-actions {
  margin-top: 12px;
  display: flex;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.smr-tour-progress {
  color: var(--muted);
  font-size: 14px;
}
.smr-tour-highlight {
  position: relative;
  z-index: 10060 !important;
  outline: 3px solid rgba(124, 58, 237, 0.95);
  outline-offset: 3px;
  border-radius: 12px;
  box-shadow: 0 0 0 6px rgba(124, 58, 237, 0.20), 0 20px 60px rgba(0, 0, 0, 0.55);
}
.smr-tour-close-fab {
  position: fixed;
  left: 14px;
  top: 14px;
  z-index: 10090;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(25, 25, 28, 0.92);
  color: var(--text);
  font-size: 22px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.5);
}
.smr-tour-close-fab:hover {
  filter: brightness(1.08);
}
.smr-tour-close-fab:active {
  transform: translateY(1px);
}
