﻿/* Wordt enkel toegepast bij print */
@media print {

    /* Verberg elementen die niet nodig zijn op papier */
    .no-print,
    header,
    footer,
    nav {
        display: none !important;
    }

    /* Zorg dat tekst goed leesbaar is */
    body {
        font-size: 12pt;
        /*font-family: "Times New Roman", serif;*/
        color: #000;
        background: none !important;
    }

    /* Links tonen als tekst */
    a::after {
        content: " (" attr(href) ")";
        font-size: 10pt;
    }

    /* Pagina-instellingen */
    @page {
        margin: 15mm;

    }

    h1, h2 {
        page-break-after: avoid;
    }

    table, figure {
        page-break-inside: avoid;
    }

    img {
        max-width: 100%;
        height: auto;
    }

    .quickLinks {
        display: none !important;
    }
    .position-sticky-aside {
        display: none !important;
    }

    .roundDocumentLayout {
        display: none !important;
    }

    .list-group-item-primary {
        color: #000;
    }

    a.list-group-item-primary::after {
        content: "" !important;
    }



    svg,
    svg * {
        fill: #000 !important;
        /*stroke: #000 !important;*/
    }


    .print-only {
        display: block !important;
    }

    #print-footer {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        padding: 6pt 10mm;
        font-size: 10pt;
        color: #000;
        border-top: 1px solid #000;
        background: none !important;
    }

}
