/* style.css */

/* Custom Scrollbar for better UI */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #F8FAFC; 
}
 
::-webkit-scrollbar-thumb {
    background: #3B82F6; 
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0F172A; 
}

/* Base resets handled by Tailwind */
html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

/* Optional custom classes that extend tailwind if needed */
