/* src/ui-interaction-prompt.css
 * UI-FEEDBACK-14 (#2800) — Worldspace interaction-prompt styles.
 * Container and chip — structural only; visual tokens deferred to Sprint 3B.
 */

/* ── Prompt overlay container ────────────────────────────────────────── */

#ui-interaction-prompts {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  pointer-events: none;
  z-index: 500;
}

/* ── Individual prompt chip ──────────────────────────────────────────── */

.ui-ip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 8px;
  background: rgba(10, 10, 20, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 4px;
  white-space: nowrap;
  pointer-events: none;
  transform: translateX(-50%);
}

/* ── Keybind badge ───────────────────────────────────────────────────── */

.ui-ip__keybind {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 3px;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 3px;
  font-size: 11px;
  font-weight: 700;
  color: #e2e8f0;
  flex-shrink: 0;
}

/* ── Action label ────────────────────────────────────────────────────── */

.ui-ip__label {
  font-size: 12px;
  color: #cbd5e1;
}
