 /* CSS styles for the category list */
 .category-list-container {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
 .category-list {
    display: inline-block;
    padding: 0;
    margin: 10px 0;
    list-style: none;
    width: calc(86% - 40px);
    overflow-x: auto;
    white-space: nowrap;
}
.category-list li {
    height: 20px;
    margin-right: 14px;
    text-align: center;
    vertical-align: middle; 
    padding: 10px;
    display: inline-block;
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
}

.category-list li:hover {
    background-color: #e0e0e0;
}

@media screen and (max-width: 600px) {
    .category-list {
    display: inline-block;
    padding: 0;
    margin: 6px 0;
    list-style: none;
    width: calc(95% - 40px);
    overflow-x: auto;
    white-space: nowrap;
}
}