/* =========================
   PRINT LAYOUT – GLOBAL
========================= */

@media print {

    @page {
        size: A4 landscape;
        margin: 15mm 10mm 30mm 10mm;
    }

    /* הסתרת אלמנטים לא רלוונטיים */
    nav,
    .btn,
    form,
    input,
    select,
    textarea,
    .alert {
        display: none !important;
    }

    /* הדפסה בלבד */
    .print-header,
    .print-footer {
        display: block !important;
    }

    /* שמירת מקום לפוטר */
    .print-content {
        margin-bottom: 35mm;
    }

    /* פוטר קבוע בתחתית */
    .print-footer {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        text-align: center;
        font-size: 11px;
        color: #555;
        border-top: 1px solid #ccc;
        padding: 6px 10px;
        background: #fff;
        z-index: 9999;
    }

    /* טבלאות */
    table {
        width: 100%;
        border-collapse: collapse;
        font-size: 11px;
    }

    th {
        background: #f2f2f2;
        font-weight: 600;
        border-bottom: 1px solid #999;
        padding: 6px 4px;
        text-align: center;
    }

    td {
        border-bottom: 1px solid #ddd;
        padding: 5px 4px;
        text-align: center;
    }
}
