/* PDF Download Styles */
@media print {
  /* Override entire flex layout */
  .flex.h-screen.bg-gray-50 {
    display: block !important;
    height: auto !important;
    background: white !important;
  }
  
  /* Hide sidebar */
  .w-56.bg-white.border-r {
    display: none !important;
  }
  
  /* Hide chat area */
  .w-2\/3,
  .flex.flex-col.transition-all {
    display: none !important;
  }
  
  /* Show only document area at full width */
  .w-1\/3.bg-white.border-l {
    display: block !important;
    width: 100% !important;
    border: none !important;
    margin: 0 !important;
    padding: 0 !important;
    min-height: auto !important;
  }
  
  /* Page settings */
  @page {
    margin: 1cm;
    size: A4;
  }
  
  /* Clean up basic styles */
  body {
    background: white !important;
    margin: 0 !important;
  }
  
  /* Override Tailwind default styles */
  * {
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }
}
