@font-face {
      font-family: 'Boogaloo';
      src: url('./Fonts/Boogaloo-Regular.ttf') format('truetype');
      font-weight: 400;
      font-style: normal;
    }
    @font-face {
      font-family: 'Aptos';
      src: url('./Fonts/Aptos.ttf') format('truetype');
      font-weight: 400;
      font-style: normal;
    }

    :root {
      --brand-blue: #0095ff;
      --brand-orange: #ff6600;
      --bg: #f4f4f4;
      --text: #333;
      --border: #dcdcdc;
      --soft-border: #ececec;
      --green: #28a745;
      --green-dark: #1f8436;
      --red: #d92d20;
      --red-dark: #b42318;
      --warning: #f59e0b;
      --warning-bg: #fff7e6;
      --danger-bg: #fff1f1;
      --soft-blue: #f8fbff;
    }

    * { box-sizing: border-box; }
    html, body { margin: 0; padding: 0; }
    body {
      font-family: Aptos, Arial, Helvetica, sans-serif;
      background: var(--bg);
      color: var(--text);
      padding: 12px;
    }

    .controls {
      position: sticky;
      top: 10px;
      z-index: 100;
      max-width: 1120px;
      margin: 0 auto 16px auto;
      background: #fff;
      display: flex;
      justify-content: center;
      gap: 10px;
      padding: 12px;
      border-radius: 10px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.08);
      flex-wrap: wrap;
    }

    button {
      border: none;
      border-radius: 8px;
      font-weight: 700;
      cursor: pointer;
      padding: 10px 16px;
      font-size: 0.95rem;
      font-family: inherit;
      min-height: 42px;
      touch-action: manipulation;
    }

    button:disabled {
      opacity: 0.65;
      cursor: not-allowed;
    }

    .btn-add { background: var(--green); color: #fff; }
    .btn-add:hover { background: var(--green-dark); }
    .btn-pdf { background: var(--brand-blue); color: #fff; }
    .btn-pdf:hover { background: #0078cf; }
    .btn-clear { background: var(--red); color: #fff; }
    .btn-clear:hover { background: var(--red-dark); }
    .btn-secondary { background: #1f2937; color: #fff; }
    .btn-secondary:hover { background: #111827; }

    .container {
      max-width: 1120px;
      margin: 0 auto;
      background: #fff;
      box-shadow: 0 0 12px rgba(0,0,0,0.08);
      padding: 34px;
    }

    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 20px;
      border-bottom: 2px solid var(--brand-blue);
      padding-bottom: 12px;
      margin-bottom: 20px;
    }

    .brand-wrap {
      display: flex;
      align-items: center;
      gap: 16px;
      min-width: 0;
    }

    .logo-box {
      width: 120px;
      min-width: 120px;
      height: 120px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #fff;
      border: 1px solid #d7e6f4;
      border-radius: 12px;
      padding: 10px;
      overflow: hidden;
    }

    #logo-img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
    }

    .logo-text h1 {
      font-family: 'Boogaloo', cursive;
      color: var(--brand-blue);
      margin: 0;
      font-size: 2.8rem;
      letter-spacing: 1px;
    }

    .logo-text h2 {
      margin: 0;
      color: var(--brand-orange);
      font-size: 1.55rem;
      line-height: 1;
      letter-spacing: 2px;
      font-weight: 700;
    }

    .document-title {
      text-align: right;
      line-height: 1.35;
    }

    .document-title h3 {
      color: var(--brand-blue);
      font-size: 1.35rem;
      margin: 0 0 6px 0;
      letter-spacing: 0.4px;
    }

    .company-info {
      font-size: 0.92rem;
      line-height: 1.5;
      white-space: nowrap;
    }

    .info-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 22px;
      margin-bottom: 18px;
    }

    .field-row {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 9px;
    }

    .field-row label {
      min-width: 142px;
      font-weight: 700;
      font-size: 0.92rem;
    }

    .field-row input,
    .field-row select {
      width: 100%;
      border: none;
      border-bottom: 1px solid var(--soft-border);
      padding: 6px 4px;
      font-size: 0.95rem;
      outline: none;
      background: transparent;
      font-family: inherit;
    }

    .summary-box {
      margin: 16px 0 18px 0;
      padding: 14px 16px;
      border: 1px solid #d7e6f4;
      border-radius: 10px;
      background: var(--soft-blue);
    }

    .summary-box h4 {
      margin: 0 0 10px 0;
      color: var(--brand-blue);
      font-size: 1rem;
    }

    .summary-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 10px;
      margin-bottom: 12px;
    }

    .summary-pill {
      border: 1px solid #d7e6f4;
      background: #fff;
      border-radius: 8px;
      padding: 10px;
      text-align: center;
    }

    .summary-pill strong {
      display: block;
      color: var(--brand-blue);
      font-size: 1.4rem;
    }

    .summary-comments {
      width: 100%;
      min-height: 88px;
      border: 1px solid var(--soft-border);
      border-radius: 8px;
      padding: 10px;
      resize: vertical;
      font-family: inherit;
      font-size: 0.94rem;
    }

    table {
      width: 100%;
      border-collapse: collapse;
      table-layout: fixed;
    }

    th {
      background: var(--brand-blue);
      color: #fff;
      text-align: center;
      padding: 10px 8px;
      font-size: 0.86rem;
      line-height: 1.15;
      white-space: normal;
      word-break: keep-all;
    }

    td {
      border: 1px solid var(--border);
      padding: 0;
      vertical-align: top;
    }

    .inspection-table th:nth-child(1) { width: 12%; }
    .inspection-table th:nth-child(2) { width: 12%; }
    .inspection-table th:nth-child(3) { width: 21%; }
    .inspection-table th:nth-child(4) { width: 10%; }
    .inspection-table th:nth-child(5) { width: 10%; }
    .inspection-table th:nth-child(6) { width: 9%; }
    .inspection-table th:nth-child(7) { width: 18%; }
    .inspection-table th:nth-child(8) { width: 8%; }

    .table-input {
      width: 100%;
      border: none;
      outline: none;
      padding: 8px 8px;
      font-size: 0.86rem;
      background: transparent;
      font-family: inherit;
      box-sizing: border-box;
    }

    select.table-input {
      min-height: 38px;
      appearance: auto;
      background: #fff;
    }

    .readonly {
      color: #333;
      background: #fafafa;
    }

    .text-wrap {
      display: block;
      width: 100%;
      resize: none;
      overflow: hidden;
      overflow-y: hidden;
      min-height: 46px;
      height: 46px;
      line-height: 1.25;
      white-space: pre-wrap;
      word-break: break-word;
      overflow-wrap: anywhere;
    }

    .comments-field {
      min-height: 46px;
      background: #fff;
    }

    .picture-cell {
      text-align: center;
      vertical-align: middle;
      min-width: 54px;
    }

    .picture-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 44px;
      min-width: 44px;
      min-height: 44px;
      padding: 0;
      border-radius: 50%;
      background: transparent;
      color: var(--brand-blue);
      border: 1px solid var(--soft-border);
      font-size: 1.35rem;
      font-weight: 800;
      cursor: pointer;
      user-select: none;
      touch-action: manipulation;
    }

    .picture-btn:hover,
    .picture-btn:focus-visible {
      background: #eef7ff;
      border-color: var(--brand-blue);
      outline: none;
    }

    .picture-input {
      position: absolute;
      width: 1px;
      height: 1px;
      overflow: hidden;
      opacity: 0;
      pointer-events: none;
    }

    .picture-preview {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 4px;
      margin-top: 6px;
    }

    .picture-preview img {
      width: 38px;
      height: 38px;
      object-fit: cover;
      border-radius: 6px;
      border: 1px solid var(--border);
      background: #fff;
    }

    .picture-count {
      display: block;
      margin-top: 4px;
      font-size: 0.72rem;
      color: #555;
    }

    .section-break td {
      background: #eef7ff;
      color: #0b63a5;
      font-weight: 800;
      padding: 8px 10px;
      border-top: 2px solid var(--brand-blue);
      letter-spacing: 0.3px;
    }



    .section-break td {
      padding: 0;
    }

    .section-toggle {
      width: 100%;
      min-height: 46px;
      border: none;
      border-radius: 0;
      background: transparent;
      color: inherit;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 10px 12px;
      text-align: left;
      font-size: 0.95rem;
      font-weight: 800;
      letter-spacing: 0.3px;
      cursor: pointer;
    }

    .section-toggle:hover,
    .section-toggle:focus {
      background: rgba(0,149,255,0.08);
      outline: none;
    }

    .section-title-wrap {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      min-width: 0;
    }

    .section-arrow {
      display: inline-block;
      font-size: 0.9rem;
      line-height: 1;
      transition: transform 0.15s ease;
    }

    .section-break.collapsed .section-arrow {
      transform: rotate(-90deg);
    }

    .section-count {
      font-size: 0.78rem;
      font-weight: 700;
      color: #376783;
      background: #fff;
      border: 1px solid #cfe5f7;
      border-radius: 999px;
      padding: 4px 8px;
      white-space: nowrap;
    }

    .section-collapsed-row {
      display: none !important;
    }

    .row-urgent td { background: var(--danger-bg); }
    .row-soon td { background: var(--warning-bg); }
    .row-poor td { background: #fff1f1; }

    .table-actions {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin-top: 10px;
    }

    .disclaimer-box {
      margin-top: 22px;
      border-top: 1px solid var(--border);
      padding-top: 12px;
    }

    .disclaimer-box h4 {
      color: var(--brand-blue);
      margin: 0 0 8px 0;
      font-size: 1rem;
    }

    .disclaimer-text {
      font-size: 0.83rem;
      line-height: 1.45;
      color: #444;
    }

    .signature-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 18px;
      margin-top: 16px;
      font-size: 0.9rem;
    }

    .signature-line {
      border-bottom: 1px solid var(--border);
      min-height: 32px;
      padding-top: 10px;
    }

    .status-message {
      margin: 10px auto 0 auto;
      max-width: 1120px;
      font-size: 0.9rem;
      color: #0d5c99;
      min-height: 20px;
      text-align: center;
    }

    .print-mode .controls,
    .print-mode .status-message,
    .print-mode .btn-add,
    .print-mode .btn-secondary {
      display: none !important;
    }

    .print-mode input,
    .print-mode textarea,
    .print-mode select {
      border: none !important;
      background: transparent !important;
      pointer-events: none;
      color: #000;
      -webkit-print-color-adjust: exact;
      print-color-adjust: exact;
    }



    @media screen and (max-width: 820px) {
      body {
        padding: 0;
        background: #fff;
      }

      .controls {
        position: sticky;
        top: 0;
        border-radius: 0;
        margin-bottom: 8px;
        max-width: none;
        justify-content: stretch;
        gap: 8px;
        padding: 10px;
      }

      .controls button {
        flex: 1 1 48%;
        min-height: 48px;
        font-size: 0.95rem;
        padding: 12px 10px;
      }

      .container {
        max-width: none;
        width: 100%;
        padding: 14px;
        box-shadow: none;
      }

      header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
      }

      .brand-wrap {
        width: 100%;
      }

      .logo-box {
        width: 82px;
        min-width: 82px;
        height: 82px;
      }

      .logo-text h1 { font-size: 2.05rem; }
      .logo-text h2 { font-size: 1.12rem; }
      .document-title { text-align: left; }
      .company-info { white-space: normal; }

      .info-grid,
      .signature-grid {
        grid-template-columns: 1fr;
        gap: 8px;
      }

      .field-row {
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        margin-bottom: 12px;
      }

      .field-row label {
        min-width: 0;
        font-size: 0.82rem;
        color: #444;
      }

      .field-row input,
      .field-row select,
      .summary-comments,
      .table-input {
        font-size: 16px;
        min-height: 44px;
      }

      .summary-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      table.inspection-table,
      .inspection-table thead,
      .inspection-table tbody,
      .inspection-table tr,
      .inspection-table td {
        display: block;
        width: 100%;
      }

      .inspection-table thead {
        display: none;
      }

      .inspection-table tr.inspection-row {
        border: 1px solid var(--border);
        border-radius: 12px;
        margin: 10px 0;
        overflow: hidden;
        background: #fff;
      }

      .inspection-table tr.inspection-row td {
        border: none;
        border-bottom: 1px solid var(--soft-border);
        display: grid;
        grid-template-columns: 116px 1fr;
        gap: 8px;
        align-items: center;
        padding: 6px 8px;
      }

      .inspection-table tr.inspection-row td:last-child {
        border-bottom: none;
      }

      .inspection-table tr.inspection-row td::before {
        font-weight: 800;
        color: #555;
        font-size: 0.78rem;
        text-transform: uppercase;
        letter-spacing: 0.2px;
      }

      .inspection-table tr.inspection-row td:nth-child(1)::before { content: 'Section'; }
      .inspection-table tr.inspection-row td:nth-child(2)::before { content: 'Area'; }
      .inspection-table tr.inspection-row td:nth-child(3)::before { content: 'Item'; }
      .inspection-table tr.inspection-row td:nth-child(4)::before { content: 'Condition'; }
      .inspection-table tr.inspection-row td:nth-child(5)::before { content: 'Responsible'; }
      .inspection-table tr.inspection-row td:nth-child(6)::before { content: 'Priority'; }
      .inspection-table tr.inspection-row td:nth-child(7)::before { content: 'Comments'; }
      .inspection-table tr.inspection-row td:nth-child(8)::before { content: 'Picture'; }

      .section-break td {
        display: block !important;
        border-radius: 8px;
        margin-top: 14px;
        overflow: hidden;
      }

      .section-toggle {
        min-height: 54px;
        font-size: 1rem;
        padding: 14px 12px;
      }

      .text-wrap,
      .comments-field {
        min-height: 54px;
      }
    }

    @media print {
      .picture-btn,
      .picture-count:empty {
        display: none !important;
      }

      .picture-preview {
        justify-content: flex-start;
      }

      .picture-preview img {
        width: 52px;
        height: 52px;
      }

      body { background: #fff; padding: 0; }
      .container {
        box-shadow: none;
        max-width: none;
        padding: 18px;
      }
      .controls, .status-message, .table-actions {
        display: none !important;
      }
      th { -webkit-print-color-adjust: exact; print-color-adjust: exact; }
      .section-break td { -webkit-print-color-adjust: exact; print-color-adjust: exact; }
      textarea { overflow: visible !important; height: auto !important; }
      .inspection-row { break-inside: avoid; }
      .section-collapsed-row { display: table-row !important; }
      .section-toggle { min-height: 32px; padding: 6px 8px; }
    }

    @media (max-width: 900px) {
      .container { padding: 18px; }
      header, .info-grid, .signature-grid { grid-template-columns: 1fr; flex-direction: column; align-items: flex-start; }
      .document-title { text-align: left; }
      .summary-grid { grid-template-columns: repeat(2, 1fr); }
      .inspection-table { font-size: 0.8rem; }
    }

/* ===== Official Website / Landing Page Styles ===== */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid #d8e2ec;
  box-shadow: 0 4px 16px rgba(18, 41, 67, .06);
}
.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #113f67;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: .2px;
}
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, #1296db, #0b5f99);
  color: white;
  font-size: 13px;
  box-shadow: 0 8px 18px rgba(18,150,219,.24);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  color: #27384a;
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
}
.nav-links a:hover,
.nav-links a.active {
  background: #eaf6ff;
  color: #087ec2;
}
.nav-toggle { display: none; }
.landing-page {
  background: #f4f8fb;
  color: #1f2d3d;
}
.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
  gap: 32px;
  padding: clamp(34px, 6vw, 78px) clamp(18px, 5vw, 72px);
  background:
    radial-gradient(circle at top right, rgba(18,150,219,.15), transparent 38%),
    linear-gradient(135deg, #ffffff 0%, #edf7ff 100%);
}
.hero-copy h1 {
  margin: 10px 0 14px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.02;
  color: #123d63;
  letter-spacing: -1.5px;
}
.hero-copy p,
.content-section p,
.split-section p,
.cta-section p,
.service-card p,
.hero-card p {
  font-size: 17px;
  line-height: 1.6;
  color: #536575;
}
.eyebrow {
  display: inline-block;
  color: #ff6a00;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 13px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.btn-primary-link,
.btn-secondary-link,
.card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 900;
}
.btn-primary-link {
  background: #ff6a00;
  color: white;
  box-shadow: 0 12px 24px rgba(255,106,0,.22);
}
.btn-secondary-link {
  background: #ffffff;
  color: #087ec2;
  border: 1px solid #c9dfef;
}
.hero-card,
.service-card,
.checklist-panel {
  background: #ffffff;
  border: 1px solid #d7e5f0;
  border-radius: 22px;
  padding: 26px;
  box-shadow: 0 18px 40px rgba(18,41,67,.08);
}
.hero-card h2,
.section-heading h2,
.split-section h2,
.cta-section h2 {
  color: #123d63;
  margin: 8px 0 12px;
}
.card-topline {
  display: inline-block;
  background: #eaf6ff;
  color: #087ec2;
  padding: 7px 10px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 12px;
}
.hero-card ul {
  padding-left: 19px;
  color: #41556a;
  line-height: 1.8;
}
.card-link {
  width: 100%;
  background: #123d63;
  color: white;
  margin-top: 8px;
}
.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0 clamp(18px, 5vw, 72px);
  transform: translateY(-20px);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(18,41,67,.09);
}
.trust-strip div {
  background: #123d63;
  color: white;
  padding: 20px;
}
.trust-strip strong,
.trust-strip span { display: block; }
.trust-strip span { opacity: .82; margin-top: 4px; }
.content-section,
.split-section,
.cta-section {
  padding: clamp(34px, 5vw, 64px) clamp(18px, 5vw, 72px);
}
.section-heading {
  max-width: 760px;
  margin-bottom: 22px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-card h3 { color: #123d63; margin-top: 0; }
.split-section {
  display: grid;
  grid-template-columns: 1fr .85fr;
  gap: 28px;
  align-items: start;
  background: #ffffff;
}
.checklist-panel p {
  margin: 10px 0;
  padding: 10px 12px;
  background: #f4f8fb;
  border-radius: 10px;
  font-weight: 700;
  color: #31475d;
}
.checklist-panel p:before {
  content: "✓";
  color: #ff6a00;
  font-weight: 900;
  margin-right: 8px;
}
.cta-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: linear-gradient(135deg, #123d63, #087ec2);
  color: white;
}
.cta-section h2,
.cta-section p { color: white; }
.cta-section .eyebrow { color: #ffd7bd; }
.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 24px clamp(18px, 5vw, 72px);
  color: #536575;
  background: #ffffff;
  border-top: 1px solid #d8e2ec;
}
@media (max-width: 900px) {
  .hero-section,
  .service-grid,
  .split-section,
  .trust-strip { grid-template-columns: 1fr; }
  .trust-strip { transform: none; margin-top: 18px; }
  .cta-section,
  .site-footer { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 760px) {
  .site-nav { align-items: flex-start; }
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid #c9dfef;
    border-radius: 12px;
    background: white;
    font-size: 22px;
    color: #087ec2;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 18px;
    right: 18px;
    flex-direction: column;
    align-items: stretch;
    background: white;
    border: 1px solid #d7e5f0;
    border-radius: 16px;
    padding: 10px;
    box-shadow: 0 18px 40px rgba(18,41,67,.16);
  }
  body.nav-open .nav-links { display: flex; }
  .hero-section { padding-top: 38px; }
}

/* Compact PDF report generated by the app. Kept off screen while converting. */
.pdf-report {
  position: fixed;
  left: -99999px;
  top: 0;
  width: 1200px;
  background: #ffffff;
  color: #111827;
  font-family: Aptos, Arial, sans-serif;
  font-size: 11px;
  line-height: 1.25;
  padding: 16px;
  z-index: -1;
}
.pdf-brand-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 3px solid #0b5fa5;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.pdf-brand-header h1 {
  margin: 0;
  color: #0b5fa5;
  font-size: 30px;
  letter-spacing: 0.5px;
}
.pdf-brand-header p {
  margin: 4px 0 0;
  color: #8a3a00;
  font-weight: 700;
  font-size: 16px;
}
.pdf-company {
  text-align: right;
  font-weight: 700;
  color: #111827;
}
.pdf-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 18px;
  margin-bottom: 10px;
}
.pdf-summary {
  border: 1px solid #cbd5e1;
  background: #f8fafc;
  padding: 8px;
  margin-bottom: 10px;
}
.pdf-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.pdf-table th {
  background: #0b8ed8;
  color: #ffffff;
  padding: 6px 5px;
  border: 1px solid #0b8ed8;
  text-align: left;
  font-size: 10px;
}
.pdf-table td {
  border: 1px solid #d1d5db;
  padding: 5px;
  vertical-align: top;
  overflow-wrap: anywhere;
  font-size: 9.5px;
}
.pdf-table th:nth-child(1), .pdf-table td:nth-child(1) { width: 11%; }
.pdf-table th:nth-child(2), .pdf-table td:nth-child(2) { width: 12%; }
.pdf-table th:nth-child(3), .pdf-table td:nth-child(3) { width: 20%; }
.pdf-table th:nth-child(4), .pdf-table td:nth-child(4) { width: 8%; }
.pdf-table th:nth-child(5), .pdf-table td:nth-child(5) { width: 9%; }
.pdf-table th:nth-child(6), .pdf-table td:nth-child(6) { width: 8%; }
.pdf-table th:nth-child(7), .pdf-table td:nth-child(7) { width: 32%; }
.pdf-row-attention td {
  background: #fff7ed;
}
.pdf-photo-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 4px;
}
.pdf-photo-strip img {
  width: 70px;
  height: 52px;
  object-fit: cover;
  border: 1px solid #cbd5e1;
  border-radius: 4px;
}
.pdf-disclaimer {
  margin-top: 10px;
  padding-top: 6px;
  border-top: 1px solid #cbd5e1;
  color: #475569;
  font-size: 8.5px;
}
