/* Custom CSS additions not covered by Tailwind */
html {
    scroll-behavior: smooth;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Hide scrollbar for cleaner look in some sections if needed */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1; 
}
::-webkit-scrollbar-thumb {
    background: #1E3A8A; 
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #F9A826; 
}
