
@media print {
    header, nav, footer, .sidebar, .navbar, .menu, .back-button, .logout-btn {
      display: none !important;
    }
  
    img {
      max-width: 100%;
      height: auto;
      page-break-inside: avoid;
    }
  
    body {
      font-family: "Arial", sans-serif;
      font-size: 12pt;
      line-height: 1.4;
      color: #000;
      background: #fff;
      margin: 1cm;
    }
  
    h1, h2, h3, h4 {
      page-break-after: avoid;
      color: #000;
    }
  
    table {
      width: 100%;
      border-collapse: collapse;
      margin-bottom: 1em;
    }
  
    th, td {
      border: 1px solid #ccc;
      padding: 4px 6px;
      text-align: left;
    }
  
    a[href]:after {
      content: " (" attr(href) ")";
      font-size: 10pt;
    }
  
    button, input[type="button"], input[type="submit"], .no-print {
      display: none !important;
    }
  
    .page-break {
      page-break-before: always;
    }
  }
  