/*
 * Auction project.
 *
 * Copyright 2022-2024 e-Contract.be BV. All rights reserved.
 * e-Contract.be BV proprietary/confidential. Use is subject to license terms.
 */

/*
 * print-style.css : contains styling specifically on how pages are printed
 */
@charset "UTF-8";

@media print {
    * {
        font-family: "Source Sans Pro", Helvetica, sans-serif;
    }
    @page {
        size: A4; /* DIN A4 standard, Europe */
    }
    body {
        margin: 16mm 16mm 16mm 16mm;
        font-size: 11pt;
        display: table;
        table-layout: fixed;
        height: auto;
    }
}