/* ==========================================
   PRINT CSS — Kingfisher Aviation
   Clean, ink‑friendly, no UI clutter
   ========================================== */

@media print {

    /* Remove navigation, buttons, and UI chrome */
    .nav,
    button,
    .btn,
    .table-actions,
    .no-print {
        display: none !important;
    }

    /* Make container full width */
    .container {
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    /* Remove background colors */
    * {
        background: white !important;
        color: black !important;
        box-shadow: none !important;
    }

    /* Tables: clean borders, readable spacing */
    table {
        width: 100%;
        border-collapse: collapse;
        font-size: 12pt;
    }

    th, td {
        border: 1px solid #000 !important;
        padding: 6px !important;
    }

    thead {
        background: #fff !important;
        color: #000 !important;
        border-bottom: 2px solid #000 !important;
    }

    /* Page breaks for long content */
    .page-break {
        page-break-before: always;
    }

    /* Headings print cleanly */
    h1, h2, h3 {
        margin-top: 0;
        padding-top: 0;
    }

    /* Forms print as text */
    input, select, textarea {
        border: none !important;
        padding: 0 !important;
        font-size: 12pt !important;
    }

    /* Hide scroll wrappers */
    .table-wrapper {
        overflow: visible !important;
    }
}