/* ============================================================
   Revonexis v3.2.4 -- Revenue Leak Quick Check Functional Hotfix
   Scoped, additive styles only for the two new result-panel text
   elements introduced by this fix (#qcResultInterp, #qcResultNext).
   The actual bug (result panel never becoming visible) was a
   HTML/JS mismatch, not a missing style -- see
   V324_QUICK_CHECK_HOTFIX_NOTES.md for the root cause. This file
   only adds presentation for content that did not exist before.
   Reuses existing tokens (--text, --white, --cyan) and the existing
   IBM Plex Mono / Satoshi type scale already used by .qc-result-label
   and the rest of the Quick Check card in v31_conversion.css.
   Loaded last so it wins the cascade without !important.
   ============================================================ */

.qc-result-interp {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--text);
  margin: 0 0 0.85rem;
}

.qc-result-next {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--white);
  margin: 0 0 1.1rem;
}

/* Visible but calm focus indicator when the result panel receives
   programmatic focus after a result is calculated (accessibility --
   takes keyboard/screen-reader users to the new content). */
#qcResult:focus {
  outline: 2px solid rgba(0, 169, 198, 0.5);
  outline-offset: 6px;
}
#qcResult:focus:not(:focus-visible) {
  outline: none;
}
