/* print.css */
@media print {
  body {
    background: white !important;
    color: black !important;
    font-family: serif;
    font-size: 12pt;
    line-height: 1.5;
  }
  
  /* Nicht benötigte Elemente ausblenden */
  nav, footer, .no-print, .ads, .buttons {
    display: none !important;
  }
  
  /* Bilder ggf. in Graustufen oder kleiner */
  img {
    filter: grayscale(100%);
    max-width: 100%;
    height: auto;
  }
  
  /* Tabellen und Layouts für Druck optimieren */
  table {
    width: 100% !important;
    border-collapse: collapse;
  }
  
  /* Links sichtbar machen */
  a::after {
    content: " (" attr(href) ")";
    font-size: smaller;
  }
}
