@media print {
    nav, footer, .sidebar, .ad-banner {
        display: none;
    }
  
    body {
      background: white !important;
      color: black !important;
      font-size: 12pt; /* Points are standard for print */
    }
    
    a::after {
      content: " (" attr(href) ")";
    }
    
    @page {
      margin: 2cm;
    }  
  
}

