/* Fees Page Print Styles
 * ========================================== */

@media print {
  /* Registration Fee and Recognition Fee tables - 60/40 split */
  /* Override all responsive width classes */
  table.table-section.table-striped-even colgroup col {
    width: auto !important;
  }
  
  table.table-section.table-striped-even colgroup col:nth-child(1) {
    width: 60% !important;
  }
  
  table.table-section.table-striped-even colgroup col:nth-child(2) {
    width: 40% !important;
  }
  
  /* Also target table cells directly */
  table.table-section.table-striped-even td:nth-child(1) {
    width: 60% !important;
    max-width: 60% !important;
  }
  
  table.table-section.table-striped-even td:nth-child(2) {
    width: 40% !important;
    max-width: 40% !important;
  }
  
  /* Force table layout */
  table.table-section.table-striped-even {
    table-layout: fixed !important;
    width: 100% !important;
  }
}
