﻿.report-header {
    width: 100%;
    margin-bottom: 20px;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.company-logo {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.company-info {
    flex: 1;
    text-align: right;
}

    .company-info h2 {
        margin: 0 0 8px;
        font-size: 24px;
        font-weight: bold;
    }

    .company-info div {
        font-size: 15px;
        margin-bottom: 4px;
    }

.report-title {
    margin-top: 20px;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
}
@media print {

    * {
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
    }

    /* تنسيق الجدول */
    table {
        width: 100% !important;
        border-collapse: collapse !important;
        border-spacing: 0 !important;
    }

    table,
    th,
    td {
        border: 1px solid #000 !important;
    }

    th,
    td {
        padding: 6px !important;
        vertical-align: middle !important;
    }

    thead th {
        background: #f2f2f2 !important;
        font-weight: bold !important;
    }

    tr {
        page-break-inside: avoid !important;
    }

    /* الهيدر */
    .report-header {
        width: 100% !important;
        margin-bottom: 20px !important;
        page-break-inside: avoid !important;
    }

    .header-top {
        display: table !important;
        width: 100% !important;
        table-layout: fixed !important;
    }

    .company-logo {
        display: table-cell !important;
        width: 120px !important;
        height: 120px !important;
        vertical-align: middle !important;
    }

    .logo-img {
        display: block !important;
        width: 100% !important;
        height: 100% !important;
        object-fit: contain !important;
    }

    .company-info {
        display: table-cell !important;
        text-align: right !important;
        vertical-align: middle !important;
        padding-right: 20px !important;
    }

        .company-info h2 {
            margin: 0 0 8px !important;
            font-size: 24px !important;
            font-weight: bold !important;
        }

        .company-info div {
            font-size: 15px !important;
            margin-bottom: 4px !important;
        }

    .report-title {
        margin-top: 20px !important;
        text-align: center !important;
        font-size: 20px !important;
        font-weight: bold !important;
    }
    .row {
        display: flex !important;
        flex-wrap: nowrap !important;
    }

    .col-6 {
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }

    .text-end {
        text-align: right !important;
    }

    .text-start {
        text-align: left !important;
    }
}