/* src/hud-interaction-prompt.css
 * HUD-CORE-06 (#2791) — Interaction-prompt chip styles.
 * Structural only — visual tokens deferred to Sprint 3B.
 */

/* ── Prompt chip container ───────────────────────────────────────────── */

#hud-interaction-prompt {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  background: rgba(10, 10, 20, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  pointer-events: none;
  transition: opacity 0.15s ease;
}

#hud-interaction-prompt.hud-ip--hidden {
  display: none;
}

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

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

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

.hud-ip__action {
  font-size: 12px;
  font-weight: 600;
  color: #e2e8f0;
  white-space: nowrap;
}

/* ── Separator ───────────────────────────────────────────────────────── */

.hud-ip__sep {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  flex-shrink: 0;
}

/* ── Target name ─────────────────────────────────────────────────────── */

.hud-ip__target {
  font-size: 12px;
  color: #94a3b8;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 160px;
}
