/* ==========================================================
   PRINT STYLESHEET (A4 – OFFICIAL FORMAT)
   File: assets/css/print.css
   ========================================================== */

@media print {

    /* ------------------------------
       GLOBAL RESET
    ------------------------------ */
    * {
        background: transparent !important;
        box-shadow: none !important;
        color: #000 !important;
    }

    body {
        font-family: serif;
        font-size: 12pt;
        line-height: 1.6;
    }

    /* ------------------------------
       HIDE NON-ESSENTIAL UI
    ------------------------------ */
    header,
    footer,
    nav,
    .no-print,
    button,
    a[href]:after {
        display: none !important;
    }

    /* ------------------------------
       MAIN CONTAINER
    ------------------------------ */
    main {
        padding: 0 !important;
        margin: 0 !important;
    }

    .shadow,
    .shadow-sm,
    .shadow-lg {
        box-shadow: none !important;
    }

    /* ------------------------------
       HEADINGS
    ------------------------------ */
    h1 {
        font-size: 20pt;
        margin-bottom: 10px;
        border-bottom: 2px solid #000;
        padding-bottom: 6px;
    }

    h2 {
        font-size: 14pt;
        margin-top: 16px;
        margin-bottom: 6px;
    }

    /* ------------------------------
       LISTS
    ------------------------------ */
    ul {
        margin-left: 20px;
    }

    li {
        margin-bottom: 4px;
    }

    /* ------------------------------
       LINKS (SHOW URL IF NEEDED)
    ------------------------------ */
    a {
        text-decoration: none;
        color: #000;
    }

    /* ------------------------------
       PAGE SETTINGS
    ------------------------------ */
    @page {
        size: A4;
        margin: 20mm;
    }

    /* ------------------------------
       FOOTER NOTE (OPTIONAL)
    ------------------------------ */
    .print-footer {
        position: fixed;
        bottom: 10mm;
        left: 0;
        right: 0;
        text-align: center;
        font-size: 9pt;
        color: #555;
    }
}
