/* ============================================================
   WALLET — additions

   The panel itself is styled in juq.css exactly as the mockup drew it. This
   file only adds the states the mockup had no way to show, because its log rows
   were hardcoded: loading, and a wallet with nothing in it yet.
   ============================================================ */

/* Won back exactly what was staked. Not a gain and not a loss, so it takes
   neither colour: green "+0" reads like a bug. */
.juq-row-amt.even {
  color: var(--muted);
  font-family: var(--f-mono);
  font-size: var(--t-mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* A log line that is a message rather than an amount. Same row rhythm so the
   panel does not change shape once real rows arrive. */
.juq-row.juq-row-note {
  display: block;
  font-family: var(--f-mono);
  font-size: var(--t-label);
  line-height: 1.6;
  color: var(--muted);
  text-transform: none;
  letter-spacing: 0;
}
