/* ===========================================================================
   FOUNDER BATCH LAUNCH HARDENING v2, F2 — post-action thumbs up/down
   micro-prompt.

   Self-contained, same reasoning as feedback-modal.css (F1): index.html
   does not link shared.css, so this depends only on tokens both systems
   define — --ink, --ink-2, --ink-3, --line, --sans — plus literal values
   for its own geometry. The `pap-` prefix (post-action prompt) keeps it
   clear of both systems.
   =========================================================================== */

.pap-row {
  display: flex; align-items: center; gap: 10px;
  margin-top: 12px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}

.pap-question {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink-2);
  flex: 1;
  min-width: 0;
}

.pap-row--thanks .pap-question { color: var(--ink); font-weight: 600; }

.pap-actions { display: flex; gap: 6px; flex-shrink: 0; }

.pap-btn {
  color: var(--ink-2);
  background: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.pap-btn:hover { border-color: var(--ink-3); color: var(--ink); }

.pap-dismiss {
  color: var(--ink-3);
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.pap-dismiss:hover { color: var(--ink); }
