/* Base styles and resets handled by Tailwind */

body {
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
}

/* Custom scrollbar for webkit */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1; 
}
 
::-webkit-scrollbar-thumb {
    background: #003366; 
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0055A4; 
}