/* Custom Print CSS for PEA Form 1:1 Match */
@media screen {
    #printablePeaForm {
        display: none !important;
    }
}

@media print {
    /* Hide all main elements on screen */
    body > * {
        display: none !important;
    }
    
    /* Display only the printable PEA form */
    body > #printablePeaForm {
        display: block !important;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        margin: 0;
        padding: 10px;
        background: #ffffff !important;
        color: #000000 !important;
        font-family: 'Sarabun', 'Prompt', 'Kanit', sans-serif !important;
    }
    
    @page {
        size: A4 portrait;
        margin: 10mm;
    }
}

.pea-print-table {
    border-collapse: collapse;
    width: 100%;
    border: 2px solid #000;
    font-size: 13px;
    color: #000;
    line-height: 1.4;
    background: #ffffff;
}

.pea-print-table th, .pea-print-table td {
    border: 1px solid #000;
    padding: 6px 8px;
    vertical-align: top;
}

.pea-dotted-line {
    border-bottom: 1px dotted #000;
    display: inline-block;
    min-width: 120px;
    padding-left: 5px;
    padding-right: 5px;
}
