
body {
    font-family: 'Inter', sans-serif;
}
/* Custom scrollbar for a sleeker look */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #111827; /* bg-gray-900 */
}
::-webkit-scrollbar-thumb {
    background: #4b5563; /* bg-gray-600 */
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #6b7280; /* bg-gray-500 */
}
html {
    scroll-behavior: smooth;
}
/* Utility class to hide scrollbars */
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}
.scrollbar-hide {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}
/* Page Load Animation */
#root {
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}
#root.loaded {
    opacity: 1;
}
