@import url('[https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap](https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap)');

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #F8FAFC; /* Slate-50 custom */
    scroll-behavior: smooth;
}

/* Sidebar Scrollbar */
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

table { border-collapse: separate; border-spacing: 0; }

.glass-effect {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.card-hover {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.card-hover:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Print Styling */
@media print {
    .no-print { display: none !important; }
    aside { display: none !important; }
    .print-area { 
        position: absolute; top: 0; left: 0; 
        width: 100%; background: white; z-index: 9999; padding: 20px;
    }
    body { background: white; }
    img { -webkit-print-color-adjust: exact; }
}