
/** ADD YOUR AWESOME CODES HERE **/

/* Horizontal Scrollable Categories Buttons */
.filter-button-group {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    padding-bottom: 10px;
    justify-content: center;
    gap: 10px;
    scrollbar-color: #888 #f1f1f1;
}

.filter-button-group::-webkit-scrollbar {
    height: 8px;
}

.filter-button-group::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.filter-button-group::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

.filter-button-group::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.filter-button-group button {
    flex-shrink: 0;
}