/* Custom scrollbar styles */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1; /* Light gray background */
}

::-webkit-scrollbar-thumb {
    background: #888; /* Darker gray for the thumb */
    border-radius: 4px; /* Rounded edges for a flat design */
}

::-webkit-scrollbar-thumb:hover {
    background: #555; /* Darker gray on hover */
}

/* For Firefox */
html {
    scrollbar-width: thin;
    scrollbar-color: #888 #f1f1f1;
}
