.tct-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(15, 23, 42, 0.55);
  pointer-events: none;
}

.tct-spotlight {
  position: fixed;
  border-radius: 10px;
  box-shadow: 0 0 0 4000px rgba(15, 23, 42, 0.55);
  border: 2px solid #58b09c;
  transition: top .25s ease, left .25s ease, width .25s ease, height .25s ease;
  pointer-events: none;
}

.tct-tooltip {
  position: fixed;
  width: 320px;
  max-width: calc(100vw - 32px);
  background: #fff;
  color: #1f2937;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  padding: 16px;
  pointer-events: auto;
  font-family: inherit;
  direction: rtl;
  text-align: right;
}

.tct-title {
  font-weight: 700;
  margin-bottom: 6px;
  color: #386150;
}

.tct-body {
  font-size: 0.9rem;
  color: #374151;
  line-height: 1.9;
  margin-bottom: 12px;
}

.tct-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}

.tct-counter {
  font-size: 0.78rem;
  color: #6b7280;
}

.tct-actions {
  display: flex;
  gap: 6px;
}

.tct-btn {
  border: 1px solid #386150;
  background: #fff;
  color: #386150;
  border-radius: 8px;
  padding: 5px 12px;
  font-size: 0.82rem;
  cursor: pointer;
}

.tct-btn:hover {
  background: #caf7e2;
}

.tct-btn.tct-primary {
  background: #386150;
  color: #fff;
}

.tct-btn.tct-primary:hover {
  background: #58b09c;
}

.tct-btn.tct-skip {
  border-color: #d1d5db;
  color: #6b7280;
}
