@media print {
  /* Hide UI elements that shouldn't be printed */
  #sidebar, 
  .header, 
  .btn,
  .toast-container,
  #chatbot-container,
  .modal-backdrop {
    display: none !important;
  }

  /* Expand main content */
  #main-content,
  body, 
  html {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    height: auto !important;
    background: #fff !important;
    overflow: visible !important;
  }

  /* Card styling adjustments for print */
  .card {
    box-shadow: none !important;
    border: 1px solid #ddd !important;
    break-inside: avoid;
    margin-bottom: 20px !important;
  }

  /* Ensure text colors are dark for better contrast */
  body, .text-muted, .text-secondary {
    color: #000 !important;
  }

  /* Page breaks */
  .page-content {
    padding: 0 !important;
  }
}
