/* =========================================================
   public/css/print.css
   -----------------------------------------
   تنسيقات الطباعة الموحدة لنظام CRM
   - إخفاء عناصر الواجهة
   - طباعة نظيفة وواضحة
   ========================================================= */

@media print {

    /* ===============================
       إعدادات عامة
    =============================== */
    * {
        box-shadow: none !important;
        text-shadow: none !important;
    }

    html, body {
        background: #ffffff !important;
        color: #000000 !important;
        font-size: 12px;
        line-height: 1.4;
    }

    body {
        margin: 0;
        padding: 0;
    }

    /* ===============================
       إخفاء عناصر الواجهة
    =============================== */
    .app-sidebar,
    .app-navbar,
    .navbar-actions,
    .sidebar-toggle,
    .flash-message,
    .no-print {
        display: none !important;
    }

    .app-container {
        display: block !important;
    }

    .app-content {
        padding: 0 !important;
        margin: 0 !important;
    }

    /* ===============================
       العناوين
    =============================== */
    h1, h2, h3, h4, h5, h6 {
        color: #000 !important;
        margin-bottom: 10px;
        page-break-after: avoid;
    }

    /* ===============================
       الكروت
    =============================== */
    .card {
        border: 1px solid #000;
        border-radius: 0;
        margin-bottom: 15px;
        page-break-inside: avoid;
    }

    .card-header {
        background: #f0f0f0 !important;
        border-bottom: 1px solid #000;
        font-weight: bold;
    }

    .card-body,
    .card-footer {
        padding: 10px;
    }

    /* ===============================
       الجداول
    =============================== */
    table {
        width: 100%;
        border-collapse: collapse;
        page-break-inside: auto;
    }

    th, td {
        border: 1px solid #000;
        padding: 6px;
        font-size: 11px;
        text-align: right;
    }

    th {
        background: #e5e5e5 !important;
        font-weight: bold;
    }

    tr {
        page-break-inside: avoid;
        page-break-after: auto;
    }

    thead {
        display: table-header-group;
    }

    tfoot {
        display: table-footer-group;
    }

    /* ===============================
       النصوص والمحاذاة
    =============================== */
    .text-center {
        text-align: center !important;
    }

    .text-right {
        text-align: right !important;
    }

    .text-left {
        text-align: left !important;
    }

    /* ===============================
       الأزرار والنماذج
    =============================== */
    button,
    .btn,
    input,
    select,
    textarea {
        display: none !important;
    }

    /* ===============================
       فواصل الصفحات
    =============================== */
    .page-break {
        page-break-before: always;
    }
}
