/* Preserve admonition background colours when printing / exporting to PDF */
.admonition,
.admonition .admonition-title {
  -webkit-print-color-adjust: exact !important;
  print-color-adjust: exact !important;
}

/* Override print-site-material.css page settings */
@page {
  margin-bottom: 2cm; /* Increase bottom margin to accommodate the line and footer */
  margin-top: 2cm; /* Reduced from 2cm */

  @top-left {
    content: var(--md-description);
    font-family: sans-serif;
    font-size: 10px;
    color: #666;
    border-bottom: 1px solid #666;
    margin-bottom: 1cm; /* Add space below the line */
    margin-top: 0.2cm;
  }

  @top-right {
    content: var(--md-date);
    font-family: sans-serif;
    font-size: 10px;
    color: #666;
    border-bottom: 1px solid #666;
    margin-bottom: 1cm; /* Add space below the line */
    margin-top: 0.2cm;
  }

  /* Style the page counter */
  @bottom-left {
    content: var(--md-author);
    font-family: sans-serif;
    font-size: 10px;
    color: #666;
    border-top: 1px solid #666;
    margin-top: 1cm;
    margin-bottom: 0.2cm;
  }

  @bottom-center {
    content: "Version: " var(--md-version);
    font-family: sans-serif;
    font-size: 10px;
    color: #666;
    border-top: 1px solid #666;
    margin-top: 1cm;
    margin-bottom: 0.2cm;
  }

  @bottom-right {
    content: counter(page) "/" counter(pages);
    font-family: sans-serif;
    font-size: 10px;
    color: #666;
    border-top: 1px solid #666;
    margin-top: 1cm;
    margin-bottom: 0.2cm;
  }
}

