
/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 12px; /* Adjust the width of the scrollbar */
}

::-webkit-scrollbar-thumb {
    background-color: rgba(234, 21, 56, 0.8); /* JDM Red from your palette */
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: rgba(234, 21, 56, 1); /* Darker red on hover */
}

::-webkit-scrollbar-track {
    background: rgba(34, 202, 236, 0.2); /* Light blue from your palette */
    border-radius: 10px;
}