.category-list {
    max-height: 500px; /* Adjust height as per your design */
    max-width: 287px; /* Adjust height as per your design */
    overflow-y: auto; /* Enable vertical scrolling */
    padding-right: 10px; /* Prevent scrollbar overlap */
}

.category-list::-webkit-scrollbar {
    width: 5px; /* Width of the scrollbar */
}

.category-list::-webkit-scrollbar-thumb {
    background-color: #888; /* Scrollbar color */
    border-radius: 4px;
}

.category-list::-webkit-scrollbar-thumb:hover {
    background-color: #555; /* Hover effect for scrollbar */
}
