/* Clean print styles */
@media print {
  * {
    color: #000 !important;
    background: #fff !important;
    border: none !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  body {
    background: #fff;
    color: #000;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 12pt;
    line-height: 1.4;
    margin: 0.5cm;
    padding: 0;
  }

  /* Hide navigation and interactive elements */
  .dropdown,
  .containerNav,
  .dropbtn,
  .dropdown-content,
  button,
  .top .container:before {
    display: none !important;
  }

  /* Optimize headings for print */
  h1, h2, h3 {
    page-break-after: avoid;
    margin-top: 0.5cm;
    margin-bottom: 0.3cm;
  }

  /* Optimize paragraphs */
  p {
    margin-bottom: 0.3cm;
    orphans: 3;
    widows: 3;
  }

  /* Optimize tables */
  table {
    border-collapse: collapse;
    width: 100%;
  }

  th, td {
    border: 1px solid #000;
    padding: 0.2cm;
  }

  /* Page breaks */
  .page-break {
    page-break-before: always;
  }

  /* Images */
  img {
    max-width: 100%;
    height: auto;
  }
}