/* style.css */
@import url('https://fonts.googleapis.com/css2?family=Sarabun:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Sarabun', sans-serif;
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    background-attachment: fixed;
    min-height: 100vh;
    color: #4a5568;
}

/* Glassmorphism */
.glass {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
}

.glass-modal {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
}

/* Transitions */
button, a { transition: all 0.2s ease; }
button:active { transform: scale(0.98); }

/* Scrollbar */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: rgba(255,255,255,0.3); }
::-webkit-scrollbar-thumb { background: #cbd5e0; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #a0aec0; }

/* Print Layout */
@media print {
    @page { size: A4; margin: 1cm; }
    body { background: white; -webkit-print-color-adjust: exact; }
    .no-print, nav, footer, button, .glass { 
        display: none !important; 
        box-shadow: none !important; 
        border: none !important; 
        background: none !important;
    }
    #print-area { display: block !important; position: absolute; top: 0; left: 0; width: 100%; }
    .print-table { width: 100%; border-collapse: collapse; margin-top: 10px; }
    .print-table th, .print-table td { border: 1px solid black; padding: 6px; text-align: center; font-size: 14pt; }
    .official-header { text-align: center; margin-bottom: 20px; }
    .garuda { width: 60px; height: auto; display: block; margin: 0 auto 5px auto; }
}
#print-area { display: none; }