/* ═══════════════════════════════════════════════
   Stadium patch — Billing screen (invoices + credit notes)
   Loaded AFTER css/app.css. Scoped to `.billing-page`
   (class added on the page container in js/billing.js).
   NOTE: the invoice table itself is styled by the runtime
   <style id="billing-styles"> injected from js/billing.js
   (it lands after this file in document order, so the
   canonical table rules live there). This patch covers the
   page shell, empty state and error state only.
   ═══════════════════════════════════════════════ */

.billing-page {
    max-width: 600px;
}

.billing-page .page-title {
    margin-bottom: 6px;
}

/* Hairline under the title, mirrors the table frame language */
.billing-page .page-title::after {
    content: '';
    display: block;
    width: 44px;
    height: 3px;
    margin-top: 12px;
    background: var(--ball);
    border-radius: 99px;
}

/* ── Empty state ── */
.billing-page .billing-empty {
    padding: 56px 16px;
    border: 1px dashed var(--control-border);
    border-radius: 24px;
    margin-top: 16px;
    color: var(--text3);
}
.billing-page .billing-empty p {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    margin: 0;
}

/* ── Error state ── */
.billing-page .billing-error {
    padding: 40px 16px;
    color: var(--fault);
}
.billing-page .billing-error p {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.6px;
    margin: 0;
}
