/* ==========================================================================
   HX Console — Phase 7 design layer
   Loaded after hx-phase6.css.

   One rule. The note shown when a list is capped.
   ========================================================================== */

/* The payments endpoint caps its list — it always did, at a flat thousand, with
   nothing said about it. Now it says so. Styled as information rather than as an
   error, because nothing has gone wrong: the totals above it are complete, only
   the rows are trimmed. */
.pay-cap {
    margin: 12px 0 0;
    padding: 10px 13px;
    border-radius: var(--r-sm);
    background: var(--warn-soft, color-mix(in srgb, var(--warn) 14%, transparent));
    border: 1px solid color-mix(in srgb, var(--warn) 36%, transparent);
    font-size: var(--t-sm);
    line-height: 1.5;
    color: var(--text);
}
.pay-cap[hidden] { display: none; }
