/* assets/css/print.css - Printable Rental Agreement & Invoice styling */

@media screen {
    .print-only {
        display: none !important;
    }
}

@media print {
    @page {
        margin: 10mm;
        size: auto;
    }

    body {
        background: #ffffff !important;
        color: #000000 !important;
        font-family: Arial, sans-serif !important;
        font-size: 11pt !important;
        line-height: 1.4 !important;
    }

    .no-print, .app-sidebar, .top-navbar, .sidebar-nav, .command-palette-overlay, .modal-overlay, .btn, .filter-bar {
        display: none !important;
    }

    .app-main {
        margin-left: 0 !important;
        padding: 0 !important;
    }

    .content-wrapper {
        padding: 0 !important;
    }

    .card {
        border: none !important;
        box-shadow: none !important;
        margin-bottom: 0 !important;
        padding: 0 !important;
    }

    .print-only {
        display: block !important;
    }

    .invoice-box {
        max-width: 100% !important;
        box-shadow: none !important;
        border: none !important;
        padding: 0 !important;
    }

    /* Thermal 80mm Print Mode */
    body.thermal-mode {
        width: 76mm !important;
        margin: 0 !important;
        font-size: 9pt !important;
    }

    body.thermal-mode .invoice-box {
        width: 100% !important;
    }
}
