/**
 * Print Stylesheet - สำหรับพิมพ์หน้าเว็บ
 * ซ่อนส่วนที่ไม่จำเป็น และปรับ layout ให้เหมาะกับการพิมพ์
 */

@media print {

    /* ซ่อนส่วนที่ไม่ต้องการพิมพ์ */
    header,
    footer,
    nav,
    aside,
    .sidebar,
    .navigation,
    .menu,
    .social-share,
    .back-to-top,
    .skip-link,
    .comments,
    .comment-form,
    .breadcrumb,
    .pagination,
    .wp-block-button,
    button,
    input,
    select,
    textarea,
    iframe,
    video,
    audio,
    .no-print {
        display: none !important;
    }

    /* แสดงเนื้อหาหลัก */
    body {
        font-family: Georgia, "Times New Roman", serif;
        font-size: 12pt;
        line-height: 1.5;
        color: #000;
        background: #fff;
    }

    /* ปรับ container ให้เต็มหน้า */
    .container,
    .content,
    .entry-content,
    main,
    article {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        float: none !important;
    }

    /* แสดง URL ของลิงก์ */
    a[href]:after {
        content: " (" attr(href) ")";
        font-size: 10pt;
        color: #666;
    }

    /* ไม่แสดง URL สำหรับลิงก์ภายใน */
    a[href^="#"]:after,
    a[href^="javascript:"]:after {
        content: "";
    }

    /* ปรับรูปภาพ */
    img {
        max-width: 100% !important;
        page-break-inside: avoid;
    }

    /* ป้องกันการตัดหน้าในส่วนสำคัญ */
    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        page-break-after: avoid;
        page-break-inside: avoid;
    }

    p,
    blockquote,
    ul,
    ol,
    dl,
    table,
    pre {
        page-break-inside: avoid;
    }

    /* Header สำหรับพิมพ์ */
    .site-title {
        font-size: 18pt;
        font-weight: bold;
        margin-bottom: 10pt;
    }

    /* ตาราง */
    table {
        border-collapse: collapse;
        width: 100%;
    }

    table th,
    table td {
        border: 1px solid #000;
        padding: 5pt;
    }

    /* เพิ่มข้อมูล URL ของหน้าเว็บ */
    @page {
        margin: 2cm;
    }
}