/* TyroGuide minimal styling */

.tyroguide-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.tyroguide-highlight {
  position: absolute;
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: 10px;
  box-shadow: 0 0 0 6px rgba(0, 0, 0, 0.35);
  background: rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.tyroguide-card {
  position: absolute;
  width: min(360px, calc(100vw - 24px));
  background: #fff;
  color: #111;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  padding: 12px 12px 10px;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.tyroguide-counter {
  font-size: 12px;
  color: #6c757d;
  margin-bottom: 6px;
}

.tyroguide-title {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 6px;
}

.tyroguide-text {
  font-size: 13px;
  line-height: 1.35;
  color: #212529;
}

.tyroguide-actions {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  align-items: center;
}

.tyroguide-btn {
  appearance: none;
  border: 1px solid #dee2e6;
  background: #f8f9fa;
  color: #111;
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 13px;
  cursor: pointer;
}

.tyroguide-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.tyroguide-btn-primary {
  background: #0d6efd;
  border-color: #0d6efd;
  color: #fff;
}

.tyroguide-btn-link {
  margin-left: auto;
  background: transparent;
  border-color: transparent;
  color: #6c757d;
  text-decoration: underline;
}
