@media print {
    * {
      box-sizing: border-box;
    }
  
    html, body {
      margin: 0.5in;
      padding: 0;
      font-size: 11px;
      line-height: 1.4;
      color: #000 !important;
      background: none !important;
      height: auto;
      max-height: 22in; 
      overflow: hidden;
    }
  
    @page {
      size: auto;
      margin: 0.5in;
    }
  
    
    header,
    footer,
    nav,
    .no-print,
    .sidebar,
    .gallery-flex,
    .chutney-img {
      display: none !important;
    }
  
    
    h1, h2, h3, p, table, ul, ol, section, article, form {
      break-inside: avoid;
      page-break-inside: avoid;
    }
  
    
    table {
      width: 100%;
      border-collapse: collapse;
      font-size: 10px;
      margin-bottom: 1em;
    }
  
    th, td {
      border: 1px solid #000;
      padding: 6px;
      background-color: #fff;
      color: #000;
    }
  
    tr:nth-child(even) {
      background-color: #f9f9f9;
    }
  
   
    img {
      max-width: 100%;
      height: auto;
      page-break-inside: avoid;
    }
  
    
    .important {
      display: block !important;
    }
  
   
    .float-left, .float-right {
      float: none !important;
    }
  }
  
  

