@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Lao:wght@300;400;700&display=swap');

body { font-family: 'Noto Sans Lao', sans-serif; }

.form-input {
    width: 100%;
    border: 1px solid #e2e8f0;
    padding: 0.8rem;
    border-radius: 0.8rem;
    outline: none;
    transition: all 0.3s;
}

.form-input:focus {
    border-color: #4f46e5;  
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
} 

@media print {
    .no-print { display: none !important; }
    body { background: white !important; }
    header, aside { display: none !important; }
    #content-view { padding: 0 !important; margin: 0 !important; }
    #edit-modal { 
        position: static !important; 
        background: white !important; 
        display: block !important;
        padding: 0 !important;
        width: 100% !important;
        height: auto !important;
    }
    #modal-body { 
        width: 100% !important; 
        max-width: none !important;
        margin: 0 !important;
        box-shadow: none !important;
        border: none !important;
    }
}