/* Job-builder extras: hour-sheet + payments cards (views/hours.js, views/payments.js).
   Only what those cards need beyond app.css; colors via the app.css variables. */

/* Entry rows are static — only the ✕ icon-btn is tappable. */
.jx-row { cursor: default; }

/* Card footer (totals / guidance) under the entry list. No border-top of its own:
   the last .jx-row keeps its border-bottom (a sibling div follows, so the
   .row.flat:last-of-type reset never fires) and acts as the separator. */
.jx-foot { margin-top: 4px; padding-top: 8px; }
.jx-foot .banner { margin-top: 8px; }

/* Calm suggestion row — the quiet counterpart to the amber .banner:
   app background + accent text. It suggests; it never acts on its own. */
.jx-suggest {
  display: flex; align-items: center; gap: 10px;
  margin-top: 10px; padding: 8px 8px 8px 12px;
  border-radius: 10px;
  background: var(--bg); color: var(--accent);
  font-size: 14px; font-weight: 600;
}

/* QR sheet (Payment-QR on the invoice / estimate cards). Centered, framed code
   with a quiet, monospaced link beneath. The white frame keeps the spec quiet
   zone visible against the sheet background so any camera locks on. */
.qr-sheet { text-align: center; }
.qr-frame {
  display: inline-block; padding: 12px;
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
}
.qr-frame canvas { display: block; }
.qr-link {
  margin: 12px 0 14px; padding: 0 4px;
  font-size: 12px; color: var(--muted); word-break: break-all; line-height: 1.4;
}
