/* SiteTicket centre-file print chrome.
   Paper documents: white, ink, amber rule. Not the night storefront. */

@page {
  size: A4;
  margin: 14mm 14mm 16mm 14mm;
}

:root {
  --ink: #17191c;
  --amber: #ffb400;
  --granted: #00b34a;
  --slate: #3b444b;
  --rule: #e0e6ee;
  --paper: #ffffff;
}

html,
body {
  background: var(--paper);
  color: var(--ink);
  font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
  font-size: 10.5pt;
  line-height: 1.35;
  margin: 0;
}

.sheet {
  max-width: 180mm;
  margin: 0 auto;
}

.masthead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 3px solid var(--amber);
  padding-bottom: 8px;
  margin-bottom: 10px;
}

.masthead svg {
  display: block;
  height: 36px;
  width: auto;
}

.doc-meta {
  text-align: right;
  font-size: 8.5pt;
  color: var(--slate);
  line-height: 1.3;
}

.doc-meta strong {
  display: block;
  color: var(--ink);
  font-family: Poppins, "IBM Plex Sans", sans-serif;
  font-size: 10pt;
}

h1 {
  font-family: Poppins, "IBM Plex Sans", sans-serif;
  font-size: 16pt;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 6px;
}

h2 {
  font-family: Poppins, "IBM Plex Sans", sans-serif;
  font-size: 11pt;
  font-weight: 600;
  margin: 12px 0 4px;
}

p,
li {
  margin: 0 0 6px;
}

.statement {
  background: #fff8e6;
  border-left: 4px solid var(--amber);
  padding: 8px 10px;
  margin: 8px 0 10px;
}

.statement p {
  margin: 0;
  font-weight: 500;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 8.5pt;
  margin: 6px 0 10px;
}

th,
td {
  border: 1px solid var(--rule);
  padding: 4px 6px;
  vertical-align: top;
  text-align: left;
}

th {
  background: #fff4cc;
  font-family: Poppins, "IBM Plex Sans", sans-serif;
  font-weight: 600;
}

.foot {
  margin-top: 12px;
  padding-top: 6px;
  border-top: 1px solid var(--rule);
  font-size: 8pt;
  color: var(--slate);
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.draft {
  display: inline-block;
  background: var(--ink);
  color: var(--amber);
  font-family: Poppins, "IBM Plex Sans", sans-serif;
  font-size: 8pt;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 6px;
}

ul {
  margin: 0 0 8px;
  padding-left: 1.1em;
}

.one-page h2 {
  margin-top: 8px;
}

.one-page table {
  font-size: 8pt;
}

@media print {
  .no-print {
    display: none;
  }
}
