@media print {
  /* Hide navigation and non-essential elements */
  nav, .no-print { display: none !important; }

  /* Optimize for printing */
  body {
    font-size: 12pt;
    line-height: 1.4;
    color: black;
    background: white;
  }

  /* Page setup */
  @page {
    margin: 0.5in;
    size: letter;
  }

  /* Print-specific header */
  .print-header {
    display: block !important;
    page-break-after: avoid;
    border-bottom: 2px solid #000;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
  }

  /* Table optimizations */
  table {
    width: 100%;
    border-collapse: collapse;
    page-break-inside: auto;
  }

  th, td {
    border: 1px solid #ccc;
    padding: 0.25rem;
    text-align: left;
  }

  th {
    background: #f8f9fa !important;
    -webkit-print-color-adjust: exact;
  }

  /* Plant type sections */
  .plant-type-section {
    page-break-inside: avoid;
    margin-bottom: 1rem;
  }

  .plant-type-header {
    background: #f8f9fa !important;
    -webkit-print-color-adjust: exact;
    border-bottom: 1px solid #000;
    margin-bottom: 0.5rem;
    padding: 0.25rem;
  }

  /* Mobile cards - hide on print, show table only */
  .block.sm\\:hidden {
    display: none !important;
  }

  .hidden.sm\\:block {
    display: block !important;
  }

  /* Ensure table is visible on print */
  .hidden.sm\\:block {
    display: table !important;
  }
}
