/* Print PDF styles */
@media print {
  body {
    background: white;
    font-size: 12pt;
    line-height: 1.5;
  }

  .print-content {
    margin: 0;
    padding: 0;
  }

  /* Hide elements not needed in print */
  .no-print {
    display: none !important;
  }

  /* Ensure links are visible */
  a {
    text-decoration: underline;
    color: black !important;
  }

  /* Page breaks */
  .page-break {
    page-break-before: always;
  }

  /* Images */
  img {
    max-width: 100% !important;
    page-break-inside: avoid;
  }
} 