/* Allgemeine Druckeinstellungen */
@media print {
    body {
        color: black;
        background-color: white;
        font-family: Arial, sans-serif;
        margin: 0;
        padding: 0;
        line-height: 1.6;
    }

    header, footer, nav {
        display: none; /* Navigation und Footer werden beim Drucken ausgeblendet */
    }

    h1, h2, h3 {
        color: black; /* Entfernt farbliche Akzente */
    }

    ul {
        list-style-type: disc;
        margin-left: 20px;
    }

    article {
        margin-bottom: 20px;
    }

    a {
        text-decoration: none;
        color: black; /* Links erscheinen als normaler Text */
    }

    /* Entfernt visuelle Inhalte, die im Druck unnötig sind */
    img, video {
        display: none;
    }
}
