body {
  font-family: Arial, sans-serif;
  margin: 0;
  font-size: 16px;
}
.report-scale-name {
  color: #de1431;
}
.report-scale-sub-name {
  color: #0f7a5c;
}

.page-content div[align="center"] {
  display: block;
  text-align: center !important;
  width: 100%;
}

.page-content div[align="center"] img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-background {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  width: 100%;
  height: auto;

  text-align: center;

  z-index: 1;
  pointer-events: none;
}

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

td, th {
  word-break: break-word;
  overflow-wrap: break-word;
}


.page-background img {
  width: 90%;
  max-width: none;
  height: auto;
  opacity: 0.5;
}

.background-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.7);
}

/* PAGE */
.page {
  width: 100%;
  box-sizing: border-box;

  position: relative;

  padding: 0;
  font-size: 13px;

  break-after: page;

  page-break-after: always;

  break-inside: avoid;
}

@page {
  margin: 80px 80px;
}

.pdf-header {
  position: fixed;
  top: 30px;
  left: 60px;
  right: 60px;

  display: flex;
  justify-content: space-between;

  font-size: 12px;
  color: #777;
}

.page-number::after {
  content: "Page " counter(page);
}
/* CONTENT */
.page-content {
  max-width: 100%;
  margin: 0;
  break-inside: avoid;
  position: relative;
  z-index: 2;
}

.footer {
  position: fixed;
  bottom: 20px;
  left: 60px;
  right: 60px;
  font-size: 12px;
}

.footer::after {
  content: "Page " counter(page);
}


/* LOGO */
.logo {
  position: absolute; 
  top: 30px;
  left: 60px;
  z-index: 999;
}

.page-image {
  text-align: center;
  margin-bottom: 20px;
}

.page-image img {
  max-width: 100%;
  height: auto;
}

.logo img {
  height: 50px;
  width: auto;
  display: block;
}


h1 { font-size: 28px; }
h2 { font-size: 18px; }
h3 { font-size: 16px; }

p {
  font-size: 13px;
  line-height: 1.3;
}

/* LIST FIX */
ul, ol {
  font-family: Arial, sans-serif;
  font-size: 13px;
  line-height: 1.3;
  margin-left: 20px;
  padding-left: 0;
}

li {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  margin-bottom: 6px;
}

li p {
  margin: 0;
  font-size: inherit;
}



/* IMAGES */
.page-content img {
  max-width: 100%;
  height: auto;
}

/* QUILL ALIGNMENT */
.ql-align-center { text-align: center; }
.ql-align-right  { text-align: right; }
.ql-align-left   { text-align: left; }
.ql-align-justify { text-align: justify; }

/* FOOTER */
.footer {
  position: absolute;
  bottom: 20px;
  right: 60px;
  font-size: 10px;
  color: #777;
  text-align: right;
}


.summary-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

.summary-divider {
  height: 1px;
  background: #e5e5e5;
  margin-bottom: 30px;
}


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

table.summary tr {
  height: 34px;
  page-break-inside: avoid;
}

table.summary td {
  font-size: 15px;
  vertical-align: middle;
}

/* LEFT COLUMN */
table.summary td.left {
  width: 45%;
  text-align: left;
  padding: 8px 0;
}

/* RIGHT COLUMN */
table.summary td:last-child {
  width: 55%;
  text-align: right; 
  padding-right: 10px;
}

table.summary font {
  font-family: Arial, sans-serif !important;
}

table.summary strong {
  font-weight: 700;
}

.page-content ul,
.page-content ol {
  padding-left: 20px;
  margin: 10px 0;
}


.page-content img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
hr {
  border: none;
  border-top: 1px solid #ccc;
  margin: 20px 0;
}

.page-content p[style*="text-align: center"],
.page-content div[style*="text-align: center"] {
  text-align: center !important;
}

.page-content p[style*="text-align: center"] img,
.page-content div[style*="text-align: center"] img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-content ul {
  list-style-type: disc;
}
.page-content ol {
  list-style: decimal;
}

.page-content li[data-list="bullet"]::before {
  content: "• ";
  margin-right: 6px;
}

.page-content li[data-list="ordered"]::before {
  counter-increment: pdf-list;
  content: counter(pdf-list) ". ";
  margin-right: 6px;
}

.page-content {
  counter-reset: pdf-list;
}