/* SignedReceipts global stylesheet — minimal reset; the bulk of the styling
   ships inline with the Astro page. This file exists so the html link target
   resolves with 200 instead of 404. */
:root {
  color-scheme: light dark;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
}
code, pre, .mono { font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace; }
a { color: inherit; }
img, svg { display: block; max-width: 100%; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.25rem; }
