/* Web and PDF styles: center images and captions */
figure {
  display: block;
  text-align: center;
  margin: 20px auto;
}

figure img {
  max-width: 100%;
  height: auto;
}

figcaption {
  display: block;
  text-align: center;
  margin-top: 10px;
}

/* Specify font family so PDF can use it */
body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !important;
}

table {
  border-collapse: collapse;
  margin: auto; /* Centers the table */
  width: auto; /* Table width is only as wide as its content */
}

th,
td {
  border: 1px solid black;
  padding: 8px;
  text-align: center; /* Centers text in table */
}

caption {
  caption-side: top; /* Ensures caption is above the table */
  text-align: center; /* Centers the caption text */
  display: table-caption; /* Keeps it positioned correctly */
  width: 100%; /* Allows caption to be wider than the table */
  white-space: normal; /* Allows it to break lines naturally if needed */
}
