﻿

/* اطمینان از چاپ همهٔ نمودارها با هر شناسه‌ای */
div[id^="charts"],
div[id^="chart"],
#container {
    max-width: 100%;
}

/* موبایل */
@media (max-width: 576px) {
    div[id^="charts"],
    div[id^="chart"],
    #container {
        height: 280px !important;
    }
}

/* چاپ */
@media print {
    div[id^="charts"],
    div[id^="chart"],
    #container {
        height: 260px !important; /* بدون ارتفاع صریح، SVG صفر می‌شود */
        page-break-inside: avoid !important; /* نمودار نصفه نشود */
    }

    .highcharts-credits {
        display: none !important;
    }

    .pagebreak {
        page-break-after: always;
    }

    /* MBTI report should span full width without bootstrap offsets */
    .report-container {
        width: 100% !important;
        margin: 0 !important;
    }

    .col-lg-offset-1 {
        margin-left: 0 !important;
    }
}

/* (اختیاری) کنترل جهت برگه با دکمه‌ی دانلود PDF */
@media print {
    .force-landscape @page {
        size: A4 landscape;
    }

    .force-portrait @page {
        size: A4 portrait;
    }
}
