/* Print-specific styles for resume PDF generation - Syntax Highlighting Theme */

@page {
  size: A4;
  margin: 0.8cm 1cm;
}

@media print {
  /* Preserve colors in print */
  html,
  body {
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }

  body {
    font-size: 9pt;
    line-height: 1.3;
  }

  /* Remove screen-only styling but keep background */
  .resume {
    box-shadow: none !important;
    max-width: none !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  /* Ensure links don't have underlines in print but keep colors */
  a {
    text-decoration: none !important;
  }

  /* Prevent page breaks inside elements */
  section {
    page-break-inside: avoid;
  }

  h2 {
    page-break-after: avoid;
  }

  /* Ensure bullet points print correctly */
  ul {
    page-break-inside: avoid;
  }

  li {
    page-break-inside: avoid;
  }

  /* Header styling for print */
  header {
    margin-bottom: 0.3cm !important;
    padding-bottom: 0.2cm !important;
  }

  /* Tighten spacing for print */
  section {
    margin-bottom: 0.15cm !important;
  }

  /* Adjust font sizes for print */
  h1 {
    font-size: 14pt !important;
  }

  h2 {
    font-size: 10pt !important;
    margin-bottom: 0.15cm !important;
    padding-bottom: 0.05cm !important;
  }

  /* Body text */
  p,
  li,
  span {
    font-size: 9pt !important;
  }
}
