/**
 * cvolsun — print / "PDF indir" styles.
 *
 * Everything else on this site is styled with Tailwind utility classes
 * directly in the markup. This file only holds the couple of things
 * Tailwind's utility set can't express: page setup (@page) and the
 * print-time layout override that hides the form and shows just the CV sheet.
 */
@media print {
  @page {
    size: A4;
    margin: 0;
  }
  html, body.builder-body {
    height: auto !important;
    overflow: visible !important;
    background: #fff !important;
  }
  .no-print {
    display: none !important;
  }
  /* On mobile the form/preview panels are toggled via a "hidden" class
     depending on which tab was last active. Printing must always show
     the preview, no matter which tab the user was on. */
  #previewPanel {
    display: block !important;
  }
  main {
    display: block !important;
    height: auto !important;
  }
  .preview-panel {
    overflow: visible !important;
  }
  .cv-sheet {
    box-shadow: none !important;
    width: 100% !important;
    min-height: 0 !important;
  }
}
