/* ═══════════════════════════════════════════════════════════════
   CalcHub — Print Styles
   ═══════════════════════════════════════════════════════════════ */

@media print {
  * {
    background-color: transparent !important;
    color: black !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  body {
    line-height: 1.5;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]::after {
    content: " (" attr(href) ")";
  }

  img {
    max-width: 100% !important;
  }

  @page {
    margin: 0.5cm;
  }

  h1,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    page-break-after: avoid;
  }

  pre {
    white-space: pre-wrap;
    word-wrap: break-word;
  }

  blockquote {
    border-left: 4px solid #ccc;
    margin-left: 0;
    padding-left: 1rem;
  }

  .no-print,
  .navbar,
  .site-footer,
  .admin-sidebar {
    display: none !important;
  }
}
