.pdf-report {
  font-family: Arial, Helvetica, sans-serif;
  color: #142033;
  line-height: 1.35;
}

.pdf-report .pdf-header {
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: 2px solid #0f56b8;
  padding-bottom: 12px;
  margin-bottom: 18px;
}

.pdf-report .pdf-logo {
  width: 110px;
  height: auto;
  object-fit: contain;
}

.pdf-report .pdf-title h1 {
  margin: 0;
  font-size: 26px;
  color: #0f56b8;
}

.pdf-report .pdf-title p {
  margin: 4px 0 0;
  color: #475467;
}

.pdf-report .pdf-section {
  margin-top: 18px;
  break-inside: avoid;
}

.pdf-report .pdf-section h2 {
  margin: 0 0 8px;
  font-size: 18px;
  color: #0f56b8;
  border-bottom: 1px solid #d0d5dd;
  padding-bottom: 4px;
}

.pdf-report .pdf-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
}

.pdf-report .pdf-box {
  border: 1px solid #d0d5dd;
  border-radius: 8px;
  padding: 8px 10px;
  background: #fafcff;
}

.pdf-report .pdf-box strong {
  display: block;
  font-size: 12px;
  color: #475467;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pdf-report table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 8px;
}

.pdf-report th,
.pdf-report td {
  border: 1px solid #d0d5dd;
  padding: 8px;
  text-align: left;
  vertical-align: top;
  font-size: 13px;
}

.pdf-report th {
  background: #edf4ff;
}

.pdf-report .pdf-alert {
  background: #fff7e6;
  border-left: 4px solid #f59e0b;
  padding: 10px 12px;
  margin-top: 10px;
  border-radius: 8px;
}

.pdf-report .pdf-photos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 10px;
}

.pdf-report .pdf-photo {
  border: 1px solid #d0d5dd;
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
  break-inside: avoid;
}

.pdf-report .pdf-photo img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.pdf-report .pdf-photo div {
  padding: 8px 10px;
  font-size: 12px;
}

.pdf-report .pdf-signature {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-end;
}

.pdf-report .pdf-signature img {
  max-height: 80px;
  width: auto;
}