@media print {
  @page {
    margin: 20mm; /* Adjust the value as needed */
  }
  /* Reset margins and padding for all elements */
  * {
    margin: 0px !important;
    padding: 0 !important;
    box-sizing: border-box !important;
  }
  /* Show the div only during printing */
  .print-only {
    font-size: 16px !important;
    display: block !important; /* Ensure it's visible during print */
  }
.print-only img {
  display: block;
  width: 300px !important;       /* Fill full printable width */
  max-width: none !important;   /* Prevent shrinking */
  height: auto !important;
  margin-bottom: 5px;
}
  /* Hide elements not needed in the print version */
  footer, nav, button, .light-background, .header, .button {
    display: none !important;
  }
  .sponsors2, .btn-new, .section-title {
    display: none !important;
  }
  /* Ensure the content takes the full width */
  .container, .section-container {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  .Agenda_highlight_Row {
    color: #000000 !important;
    font-weight: 600 !important;
  }
  /* Adjust table styles for better readability */
  table {
    width: 100% !important;
    max-width: 100% !important;
    border-collapse: collapse !important;
    border: 0.1px solid #666666 !important;
  }
  table, th, td {
    border: 1px solid #666666 !important;
  }
  #agenda {
    line-height: 1.4 !important;
  }
  #agenda tr {
    page-break-inside: avoid;
  }
  #agenda th, #agenda td {
    margin: 0px !important;
    padding: 4px 4px 3px 6px !important;
    text-align: left !important;
    font-size: 14px !important; /* Reduce the font size */
  }

}