/* 新手引导聚光灯（M021）：index.html 与 counselor.html 共用，配套 tour.js */

#mt-tour-highlight {
  position: fixed;
  border-radius: 10px;
  box-shadow: 0 0 0 9999px rgba(0, 0, 0, 0.55);
  pointer-events: none;
  z-index: 1000;
  transition: top 0.18s ease, left 0.18s ease, width 0.18s ease, height 0.18s ease;
}

#mt-tour-mask {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1000;
}

#mt-tour-card {
  position: fixed;
  z-index: 1001;
  width: 320px;
  max-width: 92vw;
  background: #fff;
  color: #2c2a29;
  border: 1px solid #ece8e3;
  border-radius: 14px;
  padding: 16px 18px 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
}

#mt-tour-card.mt-tour-center {
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%);
}

#mt-tour-card h3 {
  font-size: 15px;
  margin: 0 0 8px;
}

#mt-tour-card .mt-tour-body {
  font-size: 13.5px;
  line-height: 1.8;
  color: #5a544e;
  white-space: pre-line;
}

#mt-tour-card .mt-tour-foot {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
}

#mt-tour-card .mt-tour-step {
  font-size: 12px;
  color: #8a8580;
  margin-right: auto;
}

#mt-tour-card button {
  border: none;
  border-radius: 8px;
  padding: 7px 14px;
  font-size: 13px;
  background: #5f7f73;
  color: #fff;
  cursor: pointer;
}

#mt-tour-card button.mt-tour-skip,
#mt-tour-card button.mt-tour-prev {
  background: transparent;
  color: #8a8580;
  border: 1px solid #ddd6ce;
}

#mt-tour-card button.mt-tour-skip:hover,
#mt-tour-card button.mt-tour-prev:hover {
  color: #2c2a29;
  border-color: #8a8580;
}
