/* print.css */
@media print {
  /* Hide navigation, footers, and other non-essential elements */
  .navbar, .sidebar, .no-print {
    display: none !important;
  }

  /* Adjust the container width to use the full page */
  .container, .container-fluid {
    width: 100%;
    padding: 0;
  }

  /* Adjust font sizes and colors for readability */
  body {
    font-family: Arial, sans-serif;
    color: #000;
    background: #fff;
    font-size: 12pt;
  }

  /* Remove backgrounds, borders, or shadows that may not print well */
  .card {
    background-color: #fff !important;
    border: 1px solid #ddd !important;
    box-shadow: none !important;
  }

  /* Make tables more print-friendly */
  table {
    width: 100%;
    border-collapse: collapse;
  }
  table, th, td {
    border: 1px solid #000;
  }
  th, td {
    padding: 8px;
  }
}
