/* Stile für die Druckansicht */
@media print {
  /* Druck-Stile hier definieren */
  body {
    background-color: white;
    color: black;
  }

  .no-print {
    display: none !important; /* Dieses Element wird in der Druckansicht ausgeblendet */
  }
  /* Fügen Sie hier Ihre weiteren Druck-Stile hinzu */
  .main-content {
    background-color: white;
    color: black;
    margin-bottom: 60px; /* Platz für den Footer */
  }
}