:root {
  color-scheme: light;
  --ink: #10212a;
  --muted: #62727b;
  --line: #cfdbdf;
  --line-strong: #aabdc4;
  --surface: #ffffff;
  --surface-soft: #f4f7f8;
  --surface-tint: #e8f1f3;
  --navy: #0b232d;
  --navy-2: #123945;
  --teal: #1b7182;
  --teal-dark: #145563;
  --accent: #ef7c54;
  --danger: #b43a36;
  --success: #247149;
  --warning: #a56400;
  --shadow: 0 22px 60px rgba(7, 31, 40, .12);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 16% 0%, rgba(27, 113, 130, .13), transparent 32rem),
    linear-gradient(180deg, #edf3f4 0, #f7f9f9 42rem, #edf2f3 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.45;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
  opacity: .5;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 1000;
  padding: .75rem 1rem;
  border-radius: .65rem;
  background: #fff;
  color: var(--navy);
  box-shadow: var(--shadow);
}

.skip-link:focus {
  top: 1rem;
}

.app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2.4rem clamp(1.25rem, 4vw, 4.5rem) 2.1rem;
  background:
    linear-gradient(135deg, rgba(255,255,255,.05), transparent 45%),
    var(--navy);
  color: #fff;
  overflow: hidden;
  position: relative;
}

.app-header::after {
  content: "";
  width: 34rem;
  height: 34rem;
  position: absolute;
  right: -15rem;
  bottom: -26rem;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 50%;
  box-shadow: 0 0 0 3rem rgba(255,255,255,.025), 0 0 0 7rem rgba(255,255,255,.02);
  pointer-events: none;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  position: relative;
  z-index: 1;
}

.brand-mark {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 4.7rem;
  height: 4.7rem;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 50%;
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: .9;
}

.brand-mark small {
  display: block;
  margin-top: .25rem;
  font-size: .58rem;
  letter-spacing: .15em;
  font-weight: 600;
}

.eyebrow {
  margin: 0 0 .35rem;
  color: currentColor;
  font-size: .73rem;
  font-weight: 750;
  letter-spacing: .13em;
  text-transform: uppercase;
  opacity: .67;
}

.app-header h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1;
  letter-spacing: -.045em;
}

.header-copy {
  margin: .55rem 0 0;
  color: rgba(255,255,255,.7);
  max-width: 46rem;
}

.language-route {
  display: flex;
  align-items: center;
  gap: .75rem;
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  padding: .7rem .95rem;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(8px);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.language-route svg {
  width: 2.8rem;
  height: 1rem;
  fill: none;
  stroke: var(--accent);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.app-shell {
  width: min(1800px, 100%);
  margin: 0 auto;
  padding: 1.35rem clamp(1rem, 3vw, 3.25rem) 4rem;
}

.command-bar {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) auto;
  gap: 1rem;
  align-items: center;
  margin-top: -1.65rem;
  position: relative;
  z-index: 3;
}

.translation-status {
  min-height: 4.4rem;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: .85rem;
  padding: .95rem 1.05rem;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 15px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 16px 35px rgba(7, 31, 40, .1);
}

.translation-status progress {
  grid-column: 2;
  width: 100%;
  height: .35rem;
  accent-color: var(--teal);
}

.translation-status strong,
.translation-status span {
  display: block;
}

.translation-status strong {
  font-size: .92rem;
}

.translation-status div > span {
  margin-top: .12rem;
  color: var(--muted);
  font-size: .79rem;
}

.status-dot {
  width: .78rem;
  height: .78rem;
  border-radius: 50%;
  background: var(--warning);
  box-shadow: 0 0 0 .32rem rgba(165,100,0,.11);
}

.translation-status[data-state="ready"] .status-dot {
  background: var(--success);
  box-shadow: 0 0 0 .32rem rgba(36,113,73,.12);
}

.translation-status[data-state="busy"] .status-dot {
  background: var(--teal);
  box-shadow: 0 0 0 .32rem rgba(27,113,130,.12);
  animation: pulse 1.2s infinite;
}

.translation-status[data-state="error"] .status-dot {
  background: var(--danger);
  box-shadow: 0 0 0 .32rem rgba(180,58,54,.12);
}

@keyframes pulse {
  50% { opacity: .45; transform: scale(.85); }
}

.command-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: .55rem;
  flex-wrap: wrap;
  padding: .45rem;
  border-radius: 15px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 16px 35px rgba(7, 31, 40, .1);
}

.button {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: .7rem;
  padding: .65rem .9rem;
  font-size: .82rem;
  font-weight: 740;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease, border-color .16s ease;
}

.button:not(:disabled):hover {
  transform: translateY(-1px);
}

.button:focus-visible,
.text-button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible,
canvas:focus-visible {
  outline: 3px solid rgba(239,124,84,.35);
  outline-offset: 2px;
}

.button-primary {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 8px 18px rgba(27,113,130,.2);
}

.button-primary:hover {
  background: var(--teal-dark);
}

.button-secondary {
  border-color: var(--teal);
  background: #fff;
  color: var(--teal-dark);
}

.button-quiet {
  background: var(--surface-soft);
  color: var(--ink);
}

.button-quiet:hover {
  background: #e8eef0;
}

.button.danger,
.text-button.danger {
  color: var(--danger);
}

.danger-fill {
  background: var(--danger);
}

.privacy-note {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin: 1rem 0 1.25rem;
  padding: .85rem 1rem;
  border: 1px solid #c8d9dd;
  border-radius: 13px;
  background: rgba(232,241,243,.72);
  color: #37535d;
  font-size: .8rem;
}

.privacy-note svg {
  flex: 0 0 auto;
  width: 1.2rem;
  height: 1.2rem;
  margin-top: .05rem;
  fill: none;
  stroke: var(--teal);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.privacy-note p {
  margin: 0;
}

.workspace {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(520px, .92fr);
  gap: 1.25rem;
  align-items: start;
}

.editor-panel,
.preview-panel {
  border: 1px solid rgba(183,201,207,.75);
  border-radius: var(--radius);
  background: rgba(255,255,255,.87);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 1.45rem 1.05rem;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.74);
}

.panel-heading .eyebrow {
  color: var(--teal);
  opacity: 1;
}

.panel-heading h2 {
  margin: 0;
  font-size: 1.35rem;
  letter-spacing: -.025em;
}

.panel-step {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: .78rem;
  font-weight: 800;
}

.form-section {
  padding: 1.4rem 1.45rem 1.6rem;
  border-bottom: 1px solid var(--line);
}

.form-section:last-of-type {
  border-bottom: 0;
}

.section-heading {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
  margin-bottom: 1.05rem;
}

.section-number {
  flex: 0 0 auto;
  margin-top: .1rem;
  color: var(--teal);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .12em;
}

.section-heading h3 {
  margin: 0;
  font-size: 1.02rem;
}

.section-heading p {
  margin: .16rem 0 0;
  color: var(--muted);
  font-size: .82rem;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .85rem;
}

.field-grid-wide {
  grid-template-columns: minmax(130px, .65fr) minmax(0, 1.4fr) minmax(150px, .7fr);
}

.field-span-2 {
  grid-column: span 2;
}

.field-span-full {
  grid-column: 1 / -1;
}

.field {
  display: grid;
  align-content: start;
  gap: .42rem;
}

.field > span,
.field > label,
.translation-result label,
.inline-translation label {
  color: #2e444d;
  font-size: .77rem;
  font-weight: 720;
}

.field b,
.translation-result b {
  color: var(--danger);
}

.field small {
  justify-self: end;
  margin-top: -.15rem;
  color: var(--muted);
  font-size: .69rem;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: .7rem;
  background: #fff;
  color: var(--ink);
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}

input,
select {
  min-height: 2.8rem;
  padding: .62rem .72rem;
}

textarea {
  resize: vertical;
  min-height: 6.4rem;
  padding: .72rem;
  line-height: 1.45;
}

input::placeholder,
textarea::placeholder {
  color: #96a5ab;
}

input:hover,
textarea:hover,
select:hover {
  border-color: #8199a1;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(27,113,130,.09);
}

input:user-invalid,
textarea:user-invalid,
select:user-invalid {
  border-color: var(--danger);
  background: #fffafa;
}

.instructions-box {
  margin-top: .95rem;
  border: 1px solid var(--line);
  border-radius: .75rem;
  background: var(--surface-soft);
  color: #41565e;
  font-size: .78rem;
}

.instructions-box summary {
  padding: .75rem .85rem;
  cursor: pointer;
  font-weight: 700;
}

.instructions-box div {
  padding: 0 .85rem .8rem;
}

.instructions-box p {
  margin: .45rem 0 0;
}

.translation-field {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .85rem;
  margin-top: .9rem;
}

.translation-result {
  display: grid;
  align-content: start;
  gap: .42rem;
  padding: .72rem;
  border: 1px solid #bfd8de;
  border-radius: .85rem;
  background: linear-gradient(145deg, #f0f8f9, #e8f2f4);
}

.translation-result textarea,
.inline-translation input {
  border-color: #aacbd2;
  background: rgba(255,255,255,.92);
}

.translation-label-row,
.translation-result-actions,
.signature-pad-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
}

.translation-field-status {
  color: var(--muted);
  font-size: .68rem;
  font-weight: 650;
}

.translation-field-status[data-state="busy"] {
  color: var(--teal);
}

.translation-field-status[data-state="ready"] {
  color: var(--success);
}

.translation-field-status[data-state="manual"] {
  color: var(--warning);
}

.translation-field-status[data-state="error"] {
  color: var(--danger);
}

.translation-result-actions {
  color: var(--muted);
  font-size: .68rem;
}

.text-button {
  border: 0;
  padding: .2rem 0;
  background: transparent;
  color: var(--teal-dark);
  font-size: .72rem;
  font-weight: 760;
}

.text-button:hover:not(:disabled) {
  text-decoration: underline;
  text-underline-offset: .18rem;
}

.treatment-grid {
  margin-top: .9rem;
}

.inline-translation {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: .55rem;
  align-items: center;
  margin-top: .4rem;
  padding: .5rem;
  border-radius: .65rem;
  background: var(--surface-tint);
}

.signature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .9rem;
}

.signature-card {
  display: grid;
  gap: .8rem;
  min-width: 0;
  padding: .85rem;
  border: 1px solid var(--line);
  border-radius: .85rem;
  background: var(--surface-soft);
}

.signature-pad {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: .7rem;
  background: #fff;
}

.signature-pad-head {
  padding: .5rem .65rem;
  border-bottom: 1px solid var(--line);
  color: #2e444d;
  font-size: .73rem;
  font-weight: 720;
}

.signature-pad canvas {
  display: block;
  width: 100%;
  height: 8rem;
  touch-action: none;
  cursor: crosshair;
  background:
    linear-gradient(transparent calc(100% - 1px), #cad6da calc(100% - 1px)) 0 78% / 100% 1px no-repeat,
    #fff;
}

.signature-pad p {
  margin: 0;
  padding: .45rem .65rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .68rem;
}

.validation-message {
  margin: 1rem 1.45rem 1.4rem;
  padding: .8rem .9rem;
  border: 1px solid #e4b8b6;
  border-radius: .75rem;
  background: #fff2f1;
  color: #852b28;
  font-size: .8rem;
}

.preview-panel {
  position: sticky;
  top: 1rem;
  padding-bottom: 1.1rem;
  background: #dfe7e9;
}

.preview-heading {
  background: rgba(255,255,255,.93);
}

.preview-help {
  margin: .85rem 1.2rem;
  color: #4f6269;
  font-size: .76rem;
}

.report-paper {
  width: calc(100% - 2rem);
  min-height: 1090px;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  padding: 42px 38px 30px;
  background: #fff;
  color: #1a1a1a;
  box-shadow: 0 15px 45px rgba(10,35,43,.2);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11.5px;
  line-height: 1.28;
}

.report-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 18px;
}

.report-header h1 {
  margin: 0;
  color: #5b5b5b;
  font-size: 31px;
  line-height: .95;
  letter-spacing: -.8px;
}

.report-header p {
  margin: 4px 0 0;
  color: #646464;
  font-size: 16px;
  letter-spacing: .3px;
}

.report-brand,
.report-footer-brand {
  display: grid;
  justify-items: center;
  align-content: center;
  min-width: 62px;
  color: #4f5960;
  line-height: .95;
}

.report-brand strong,
.report-footer-brand strong {
  font-size: 15px;
}

.report-brand span,
.report-footer-brand span {
  padding-top: 3px;
  border-top: 1px solid #7c858a;
  font-size: 9px;
  letter-spacing: .9px;
}

.competition-row {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: end;
  gap: 10px;
  margin-bottom: 12px;
  font-weight: 700;
}

.competition-row strong {
  min-height: 20px;
  padding: 0 4px 2px;
  border-bottom: 1px dotted #555;
  overflow-wrap: anywhere;
}

.report-meta-grid {
  display: grid;
  grid-template-columns: .7fr 1.7fr .72fr;
  gap: 10px;
  margin-bottom: 10px;
}

.report-box {
  min-height: 42px;
  border: 1px solid #50565a;
  overflow: hidden;
}

.report-box > span {
  display: block;
  padding: 4px 7px 2px;
  color: #34393c;
  font-weight: 700;
}

.report-box > strong,
.report-box > p {
  display: block;
  margin: 0;
  padding: 2px 7px 6px;
  min-height: 22px;
  font-weight: 500;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.report-box.compact {
  min-height: 31px;
}

.report-box.compact {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
}

.report-box.compact > span {
  white-space: nowrap;
  padding-right: 3px;
}

.report-box.compact > strong {
  min-width: 0;
  padding: 4px 6px 4px;
  font-weight: 500;
}

.report-instructions {
  margin-bottom: 10px;
  color: #454545;
}

.report-instructions h2 {
  margin: 0 0 1px;
  font-size: 11.5px;
  text-decoration: underline;
}

.report-instructions p {
  margin: 0 0 1px;
}

.report-person-fields {
  display: grid;
  margin-bottom: 10px;
}

.report-person-fields .report-box + .report-box {
  border-top: 0;
}

.report-box-large {
  min-height: 82px;
}

.report-treatment h2 {
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 700;
}

.ruled-text {
  min-height: 132px;
  padding: 2px 4px 0;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  line-height: 27px;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0,
    transparent 26px,
    #5f6669 26px,
    #5f6669 27px
  );
}

.signature-table {
  width: 100%;
  margin-top: 12px;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: 11px;
}

.signature-table th,
.signature-table td {
  border: 1px solid #50565a;
  padding: 5px 7px;
  text-align: left;
  vertical-align: middle;
  overflow-wrap: anywhere;
}

.signature-table thead th {
  text-align: center;
  font-size: 12px;
}

.signature-table thead th:first-child,
.signature-table tbody th {
  width: 28%;
}

.signature-table tbody th {
  font-weight: 500;
}

.signature-row th,
.signature-row td {
  height: 58px;
}

.signature-row img {
  display: block;
  max-width: 100%;
  max-height: 46px;
  margin: 0 auto;
  object-fit: contain;
}

.report-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: end;
  gap: 13px;
  margin-top: auto;
  padding-top: 17px;
  border-top: 1px solid #bfc5c8;
  color: #7a8387;
  font-size: 8.5px;
}

.report-footer > div:nth-child(2) {
  display: grid;
}

.report-footer > strong:last-child {
  align-self: center;
  font-size: 9px;
  font-weight: 500;
  white-space: nowrap;
}

.confirm-dialog {
  max-width: 29rem;
  border: 0;
  border-radius: 1rem;
  padding: 0;
  box-shadow: 0 25px 80px rgba(5,25,32,.3);
}

.confirm-dialog::backdrop {
  background: rgba(4,20,27,.55);
  backdrop-filter: blur(4px);
}

.confirm-dialog form {
  padding: 1.3rem;
}

.confirm-dialog h2 {
  margin: 0;
  font-size: 1.2rem;
}

.confirm-dialog p {
  margin: .55rem 0 1.2rem;
  color: var(--muted);
}

.confirm-dialog form > div {
  display: flex;
  justify-content: flex-end;
  gap: .6rem;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 1.5rem;
  z-index: 1000;
  transform: translateX(-50%);
  max-width: min(90vw, 36rem);
  padding: .75rem 1rem;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  box-shadow: 0 14px 40px rgba(4,20,27,.3);
  font-size: .8rem;
  font-weight: 650;
  text-align: center;
}

@media (max-width: 1320px) {
  .command-bar {
    grid-template-columns: 1fr;
  }

  .command-actions {
    justify-content: flex-start;
  }

  .workspace {
    grid-template-columns: minmax(0, 1fr) minmax(470px, .9fr);
  }

  .field-grid-wide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .field-grid-wide .field-span-2 {
    grid-column: span 2;
  }

  .field-grid-wide .field-span-full {
    grid-column: 1 / -1;
  }
}

@media (max-width: 1040px) {
  .workspace {
    grid-template-columns: 1fr;
  }

  .preview-panel {
    position: static;
  }

  .report-paper {
    width: min(780px, calc(100% - 2rem));
  }
}

@media (max-width: 720px) {
  .app-header {
    align-items: flex-start;
    padding: 1.5rem 1rem 2.2rem;
  }

  .brand-mark {
    width: 3.8rem;
    height: 3.8rem;
  }

  .header-copy {
    display: none;
  }

  .language-route {
    gap: .35rem;
    padding: .55rem .65rem;
  }

  .language-route svg {
    width: 1.6rem;
  }

  .app-shell {
    padding-inline: .65rem;
  }

  .translation-status {
    grid-template-columns: auto 1fr;
  }

  .command-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .command-actions .button-primary {
    grid-column: span 2;
  }

  .panel-heading,
  .form-section {
    padding-inline: 1rem;
  }

  .field-grid,
  .field-grid-wide,
  .translation-field,
  .signature-grid {
    grid-template-columns: 1fr;
  }

  .field-span-2,
  .field-grid-wide .field-span-2 {
    grid-column: auto;
  }

  .field-span-full,
  .field-grid-wide .field-span-full {
    grid-column: 1 / -1;
  }

  .inline-translation {
    grid-template-columns: 1fr;
  }

  .report-paper {
    width: calc(100% - 1rem);
    min-width: 690px;
  }

  .preview-panel {
    overflow-x: auto;
  }

  .preview-heading,
  .preview-help {
    min-width: 690px;
  }
}

@media print {
  @page {
    size: A4 portrait;
    margin: 8mm;
  }

  html,
  body {
    width: 210mm;
    min-width: 0;
    margin: 0;
    padding: 0;
    background: #fff !important;
  }

  .app-header,
  .command-bar,
  .privacy-note,
  .editor-panel,
  .preview-heading,
  .preview-help,
  .confirm-dialog,
  .toast {
    display: none !important;
  }

  .app-shell,
  .workspace,
  .preview-panel {
    display: block;
    width: auto;
    margin: 0;
    padding: 0;
    border: 0;
    background: #fff;
    box-shadow: none;
    overflow: visible;
  }

  .report-paper {
    width: 194mm;
    min-width: 0;
    min-height: 281mm;
    margin: 0;
    padding: 6mm 7mm 4mm;
    box-shadow: none;
    font-size: 9.2pt;
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }

  .report-header {
    margin-bottom: 4mm;
  }

  .report-header h1 {
    font-size: 24pt;
  }

  .report-header p {
    font-size: 12pt;
  }

  .report-meta-grid {
    gap: 2.5mm;
  }

  .ruled-text {
    min-height: 32mm;
    line-height: 6.5mm;
    background: repeating-linear-gradient(
      to bottom,
      transparent 0,
      transparent 6.25mm,
      #5f6669 6.25mm,
      #5f6669 6.5mm
    );
  }

  .signature-table {
    break-inside: avoid;
  }

  .report-footer {
    break-inside: avoid;
  }
}
