body { font-family: 'Kantumruy Pro', sans-serif; }
/* Custom Scrollbar */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #94a3b8; }
/* Hide scrollbar for slider */
.scrollbar-none::-webkit-scrollbar { display: none; }
.scrollbar-none { -ms-overflow-style: none; scrollbar-width: none; }

.ai-message { animation: fadeIn 0.3s ease-in-out; }
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes slideIn {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
.animate-fadeIn { animation: fadeIn 0.2s ease-out forwards; }
@media print {
    body * { visibility: hidden; }
    #order-detail-print-area, #order-detail-print-area * { visibility: visible; }
    #order-detail-print-area { position: absolute; left: 0; top: 0; width: 100%; padding: 20px;}
    .no-print { display: none !important; }
}
