/* Horizontal scrolling for categories */
.categories-scroll-container {
    overflow-x: auto;
    padding-bottom: 5px; /* Space for scrollbar */
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: thin; /* Firefox */
}

/* Custom scrollbar styling */
.categories-scroll-container::-webkit-scrollbar {
    height: 4px;
}

.categories-scroll-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.categories-scroll-container::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

.categories-scroll-container::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Ensure the flex container doesn't wrap */
.categories-scroll-container .d-flex {
    flex-wrap: nowrap;
}

/* Style for category buttons */
.categories-scroll-container .btn {
    white-space: nowrap;
}
