/* ============================================================
   ps_profile_print.css
   วางไฟล์นี้ที่  css_custom/ps_profile_print.css
   เรียกใช้ใน ps_profile.aspx ใน <head> section:
   <link rel="stylesheet" href="css_custom/ps_profile_print.css" media="print" />
   ============================================================ */

@media print {

    /* ── ซ่อน elements ที่ไม่ต้องการใน PDF ── */
    .navbar,
    .navbar-collapse,
    nav,
    footer,
    .btn,
    button,
    #addfile,
    .no-print {
        display: none !important;
    }

    /* ── ปรับ layout ── */
    body {
        font-size: 11pt;
        font-family: 'Sarabun', 'TH Sarabun New', sans-serif;
        color: #000 !important;
        background: #fff !important;
    }

    .container,
    .container-fluid {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    /* ── Card บุคลากร ── */
    .card {
        border: 1px solid #ccc !important;
        box-shadow: none !important;
        page-break-inside: avoid;
    }

    .card img {
        max-width: 180px !important;
    }

    /* ── ป้องกันตัดหัวข้อกลางหน้า ── */
    h1, h2, h3, h4, h5, ul, li {
        page-break-inside: avoid;
    }

    h3, h4 {
        page-break-after: avoid;
    }

    /* ── Link ไม่ต้องแสดง URL ── */
    a[href]::after {
        content: none !important;
    }

    /* ── ขนาดหน้ากระดาษ A4 ── */
    @page {
        size: A4 portrait;
        margin: 15mm;
    }
}