/* ── Guided tour ─────────────────────────────────────────────────────────── */

.tour-popover {
  background: #fff;
  border-radius: 10px;
  padding: 20px 22px 16px;
  box-shadow: 0 8px 36px rgba(0, 0, 0, 0.22);
  font-family: system-ui, -apple-system, sans-serif;
  pointer-events: all;
}

.tour-progress {
  display: flex;
  gap: 5px;
  margin-bottom: 12px;
}

.tour-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d0cfc8;
  transition: background 0.2s;
}

.tour-dot--active {
  background: #3399CC;
}

.tour-title {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a18;
  margin-bottom: 8px;
}

.tour-body {
  font-size: 13px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 16px;
}

.tour-body strong {
  color: #1a1a18;
  font-weight: 700;
}

.tour-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tour-skip-btn {
  background: none;
  border: none;
  color: #bbb;
  font-size: 12px;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
  transition: color 0.15s;
}

.tour-skip-btn:hover { color: #777; }

.tour-back-btn {
  background: none;
  border: 1.5px solid #d0cfc8;
  color: #555;
  font-size: 13px;
  font-weight: 600;
  border-radius: 6px;
  padding: 5px 12px;
  cursor: pointer;
  font-family: inherit;
  transition: border-color 0.15s;
}

.tour-back-btn:hover { border-color: #aaa; }

.tour-next-btn {
  background: #050d50;
  border: none;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  border-radius: 6px;
  padding: 6px 16px;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s;
}

.tour-next-btn:hover { background: #0d1e99; }

/* ── "Take the tour" trigger button ─────────────────────────────────────── */

.tour-start-btn {
  background: none;
  border: 1.5px solid #d0cfc8;
  color: #555;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 6px;
  padding: 0.45rem 0.9rem;
  cursor: pointer;
  font-family: inherit;
  transition: border-color 0.15s, color 0.15s;
  white-space: nowrap;
}

.tour-start-btn:hover {
  border-color: #3399CC;
  color: #3399CC;
}
