/* Scrollbar styles for WebKit browsers */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

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

::-webkit-scrollbar-thumb:hover {
    background-color: #555;
}

/* Scrollbar styles for Firefox */
body {
    scrollbar-width: thin;
    scrollbar-color: #888 transparent;
}