/* universitest/css/print.css */

/* ==========================================================================
   Print Styles
   ========================================================================== */

@media print {
  
  /* Hide elements that are not needed for the printout */
  .site-header,
  footer,
  .export-buttons-container,
  .back-link-container,
  .upsell-box {
    display: none !important;
  }

  /* Ensure the main content uses the full page width */
  .page-container {
    width: 100%;
    margin: 0;
    padding: 0;
    border: none;
    box-shadow: none;
  }
  
  /* General print-friendly text styles */
  body {
    font-size: 12pt;
    color: #000;
    background-color: #fff;
  }

  /* Make links appear as regular text */
  a {
    text-decoration: none;
    color: inherit;
  }
  
  /* Ensure the table borders are visible */
  .data-table th, .data-table td {
      border: 1px solid #ccc;
  }
}