@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;900&display=swap');
        
body { font-family: 'Inter', sans-serif; }

::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: #f8fafc; }
::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: #94a3b8; }

@keyframes fade-in { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.animate-fade-in { animation: fade-in 0.4s ease-out forwards; }

.sticky-col { position: sticky; left: 0; background: white; z-index: 20; }
.shadow-right { box-shadow: 2px 0 5px rgba(0,0,0,0.03); }