﻿/* ✅ إعدادات عامة للطباعة بخط صغير ومنسق */
.print-container {
    font-family: "Cairo", sans-serif;
    direction: rtl;
    text-align: right;
    background: #fff;
    color: #000;
    margin: 0 auto;
    padding: 10px;
    width: 100%;
    box-sizing: border-box;
    font-size: 10px; /* حجم الخط العام الصغير */
}

/* 🔖 العناوين والشعار */
.header-logo {
    width: 90px;
    height: auto;
    display: block;
    margin: 0 auto 5px auto;
}

.section-title {
    font-weight: bold;
    margin-top: 8px;
    margin-bottom: 8px;
    text-decoration: underline;
    text-align: center;
    font-size: 9px; /* حجم خط أصغر للعناوين */
}

/* 🖋️ خط التوقيع */
.signature-line {
    border-bottom: 1px solid black;
    width: 150px;
    height: 20px;
    margin: 10px auto;
}

/* ⚙️ إعدادات الطباعة */
@media print {
    /* إخفاء كل شيء عدا محتوى الطباعة */
    body * {
        visibility: hidden !important;
    }

    .print-container,
    .print-container * {
        visibility: visible !important;
    }

    /* موضع المحتوى في الصفحة */
    .print-container {
        position: absolute !important;
        left: 0;
        top: -20mm !important;
        width: 100%;
        background: white !important;
        margin: 0 !important;
        padding: 0mm 5mm !important;
        box-sizing: border-box;
        page-break-before: avoid;
        page-break-after: avoid;
        page-break-inside: avoid;
        font-size: 9px !important; /* 🔹 تصغير الخط أثناء الطباعة */
    }

    /* إزالة الهوامش الخارجية */
    @page {
        size: A4 portrait;
        margin: 3mm;
    }

    /* إخفاء العناصر غير المرغوبة في الطباعة */
    nav, .sidebar, .navbar, .btn, .no-print {
        display: none !important;
        visibility: hidden !important;
    }

    /* الشعار */
    .header-logo {
        position: absolute !important;
        top: -5mm !important;
        right: 5mm !important;
    }

    /* ترويسة الصفحة */
    .print-header {
        text-align: center;
        margin: 0 !important;
        padding: 0 !important;
    }

        .print-header h2 {
            margin: 0 !important;
            padding: 0 !important;
            line-height: 1.1 !important;
            font-size: 11px !important;
        }

    /* 🧾 الجدول */
    table {
        width: 100%;
        border-collapse: collapse;
        table-layout: fixed;
        font-size: 9px !important; /* 🔹 خط أصغر داخل الجداول */
    }

    th, td {
        border: 1px solid black;
        padding: 2px 4px;
        word-break: break-word;
        overflow-wrap: break-word;
        vertical-align: middle;
    }
}
