/* Custom styles can go here. Tailwind handles most of it. */
body {
    -webkit-font-smoothing: antialiased;
}

/* Beautiful Red Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a; 
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: #ED1C24; 
    border-radius: 4px;
    transition: background 0.3s ease;
}

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

/* For Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #ED1C24 #1a1a1a;
}
