/* Custom Styles supplementing Tailwind */
body {
    font-family: 'Inter', sans-serif;
}

@media print {
    .no-print {
        display: none !important;
    }
    
    body {
        background: white !important;
    }

    /* Helper class to hide Scrollbars in print */
    ::-webkit-scrollbar {
        display: none;
    }
}