/**
 * Print Stylesheet for School Supervision System
 */

@media print {
    /* ซ่อนส่วนประกอบที่ไม่ใช่เอกสารสำหรับพิมพ์ */
    .navbar,
    .sidebar-wrapper,
    .btn,
    .theme-toggle-btn,
    .chatbot-widget,
    footer,
    #loadingOverlay,
    .breadcrumb,
    .no-print {
        display: none !important;
    }

    body {
        background-color: white !important;
        color: black !important;
        font-family: 'Sarabun', 'TH Sarabun PSK', sans-serif !important;
        font-size: 14pt !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    /* จัดขอบหน้ากระดาษ A4 */
    @page {
        size: A4 portrait;
        margin: 2cm 2cm 2cm 2cm;
    }

    @page landscape {
        size: A4 landscape;
        margin: 1.5cm 1.5cm 1.5cm 1.5cm;
    }

    .landscape-print {
        page: landscape;
    }

    /* กำหนดขึ้นหน้าใหม่ */
    .page-break {
        page-break-before: always;
        break-before: page;
    }

    /* ตารางพิมพ์ */
    table {
        width: 100% !important;
        border-collapse: collapse !important;
        margin-bottom: 20px !important;
    }

    table th,
    table td {
        border: 1px solid #000000 !important;
        padding: 8px 10px !important;
        color: black !important;
        background-color: transparent !important;
        font-size: 13pt !important;
    }

    table th {
        background-color: #f2f2f2 !important;
        text-align: center !important;
        font-weight: bold !important;
    }

    /* หัวรายงานเอกสารทางราชการ */
    .report-header {
        text-align: center;
        margin-bottom: 30px;
    }

    .report-title {
        font-size: 18pt;
        font-weight: bold;
        margin-top: 10px;
        margin-bottom: 5px;
    }

    .report-subtitle {
        font-size: 14pt;
        margin-bottom: 20px;
    }

    /* ส่วนลายเซ็นท้ายเอกสาร */
    .signature-container {
        margin-top: 40px;
        page-break-inside: avoid;
    }

    .signature-row {
        display: flex;
        justify-content: space-between;
        margin-top: 30px;
    }

    .signature-box {
        width: 45%;
        text-align: center;
        font-size: 13pt;
    }

    .signature-line {
        border-bottom: 1px dotted #000;
        width: 200px;
        margin: 40px auto 10px auto;
    }

    /* การ์ดและกล่องข้อมูล */
    .print-card {
        border: 1px solid #ccc !important;
        border-radius: 4px;
        padding: 15px;
        margin-bottom: 20px;
        page-break-inside: avoid;
    }

    /* QR Code และ รูปภาพแนบ */
    .qr-container {
        text-align: center;
        margin: 20px 0;
    }

    .qr-image {
        width: 120px;
        height: 120px;
    }

    .print-photo-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        margin-top: 20px;
    }

    .print-photo-box {
        border: 1px solid #ccc;
        padding: 5px;
        text-align: center;
        border-radius: 4px;
    }

    .print-photo-box img {
        max-width: 100%;
        height: auto;
        max-height: 180px;
        object-fit: cover;
    }
}
