
.carousel-container {
    overflow: hidden;
    width: 100%;
    background-color: #ffff;
}

.carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    white-space: nowrap;
    gap: 20px; /* Adjust the gap between categories */
    padding: 10px;
}

.category {
    flex: 0 0 auto;
   /* Adjust the category width as needed */
    background-color: #fff;
    /* padding: 20px; */
    padding:5px 10px;
    /* border: 1px solid #ccc; */
    border-radius: 5px;
    text-align: center;
    scroll-snap-align: start;
}
