/* Custom styles if needed, mostly using Tailwind classes */
body {
    background-color: #000000;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

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

::-webkit-scrollbar-track {
    background: #000000;
}

::-webkit-scrollbar-thumb {
    background: #FF4433;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #cc3322;
}
