/* Container for navigation and pagination */
.category-swiper-navigation-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
}

/* Pagination */
.categories-swiper-navigation.swiper-pagination {
    flex-grow: 1;
    text-align: center;
}

/* Previous and Next Buttons */
.categories-swiper-button-prev.swiper-button-prev,
.categories-swiper-button-next.swiper-button-next {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: unset;
    top: unset;
    margin: 10px 30px
}

.categories-swiper-button-prev::after {
    font-size: 18px;
    font-weight: bold;
}

.categories-swiper-button-next::after {
    font-size: 18px;
    font-weight: bold;
}

.category-wrapper .swiper-wrapper {
    display: flex;
    align-items: stretch;
}

.category-slide .swiper-slide {
    width: auto;
    text-align: center;
    font-size: 18px;
    background: #f3f3f3;
    border: 1px solid #ddd;
    padding: 20px;
    box-sizing: border-box;
    flex-shrink: 0;
}

.categories-swiper-pagination .swiper-pagination-bullet-active {
    background: #404042;
}

