/* นำเข้า Font TH Sarabun New */
@import url('https://fonts.googleapis.com/css2?family=Sarabun:wght@300;400;500;600;700&display=swap');

html, body {
    font-family: 'Sarabun', sans-serif;
    font-size: 10pt; 
    background-color: #f8fafc;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
}

/* สีพื้นหลังสำหรับแต่ละวัน */
.day-bg-0 { background-color: #ffe4e6; color: #881337; } /* อาทิตย์ */
.day-bg-1 { background-color: #fef08a; color: #713f12; } /* จันทร์ */
.day-bg-2 { background-color: #fbcfe8; color: #831843; } /* อังคาร */
.day-bg-3 { background-color: #dcfce7; color: #14532d; } /* พุธ */
.day-bg-4 { background-color: #ffedd5; color: #7c2d12; } /* พฤหัส */
.day-bg-5 { background-color: #dbeafe; color: #1e3a8a; } /* ศุกร์ */
.day-bg-6 { background-color: #f3e8ff; color: #581c87; } /* เสาร์ */

.table-custom th {
    background-color: #bfdbfe;
    color: #1e3a8a;
    padding: 12px;
    text-align: left;
}
.table-custom td {
    padding: 10px 12px;
    border-bottom: 1px solid #e2e8f0;
}
.week-header {
    background-color: #fef9c3;
    color: #854d0e;
    font-weight: bold;
    text-align: center;
}

/* Print CSS */
@media print {
    body { background-color: #fff; }
    .no-print { display: none !important; }
    .shadow-sm, .shadow-lg { box-shadow: none !important; border: none !important; }
    .max-w-6xl { max-width: 100% !important; padding: 0 !important; }
    
    /* บังคับให้สีพื้นหลังตารางติดไปในไฟล์ PDF */
    .table-custom th { 
        background-color: #bfdbfe !important; 
        -webkit-print-color-adjust: exact; 
        print-color-adjust: exact; 
    }
    .week-header { 
        background-color: #fef9c3 !important; 
        -webkit-print-color-adjust: exact; 
        print-color-adjust: exact; 
    }
    .day-bg-0, .day-bg-1, .day-bg-2, .day-bg-3, .day-bg-4, .day-bg-5, .day-bg-6 {
        -webkit-print-color-adjust: exact; 
        print-color-adjust: exact;
    }
}