/* ═══════════════════════════════════════════════════════
   print.css — استایل‌های پرینت
   ═══════════════════════════════════════════════════════ */

@media print {
    * { -webkit-print-color-adjust: exact !important; print-color-adjust: exact !important; }

    body { background: #fff; color: #000; }

    /* مخفی کردن عناصر غیرضروری */
    .sidebar,
    .topbar,
    .no-print,
    .btn,
    nav,
    .site-header,
    .site-footer,
    .filter-bar,
    .pagination,
    .flash-messages { display: none !important; }

    /* محتوا تمام‌عرض */
    .main-content { margin-right: 0 !important; }
    .page-content { padding: 0 !important; }

    /* کارت ورود */
    .print-card {
        width: 10cm;
        min-height: 7cm;
        border: 2px solid #1d4ed8;
        border-radius: 10px;
        padding: 1cm;
        display: flex;
        flex-direction: column;
        align-items: center;
        font-family: Tahoma, Arial, sans-serif;
        direction: rtl;
        page-break-inside: avoid;
        margin: 0 auto;
        background: #fff;
    }

    .print-card-logo { width: 1.5cm; height: 1.5cm; margin-bottom: .3cm; }

    .print-card-conf-name {
        font-size: 9pt; color: #475569; margin-bottom: .2cm;
        text-align: center;
    }

    .print-card-name {
        font-size: 16pt; font-weight: bold;
        color: #0f172a; margin-bottom: .2cm;
        text-align: center;
    }

    .print-card-paper {
        font-size: 8pt; color: #475569;
        text-align: center; margin-bottom: .4cm;
    }

    .print-card-divider {
        width: 100%; border: none;
        border-top: 1px solid #e2e8f0;
        margin: .3cm 0;
    }

    .print-card-qr { width: 2cm; height: 2cm; margin: 0 auto .3cm; }

    .print-card-footer {
        font-size: 7pt; color: #64748b;
        text-align: center; margin-top: auto;
    }

    /* صفحه‌بندی */
    @page { margin: 1cm; size: A4; }
}
