/* Ensure the Swiper container takes full width */
.swiper-container {
    width: 100%;
    height: 500px; /* Adjust height as needed */
    margin-bottom: 30px;
    position: relative; /* Add relative positioning for absolute child elements */
}

/* Center the images within the slides */
.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

/* Style the navigation buttons */
.swiper-button-next,
.swiper-button-prev {
    color: #000; /* Adjust color as needed */
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10; /* Ensure they appear above the slides */
}

/* Additional adjustments for better visibility */
.swiper-button-next {
    right: 10px;
}

.swiper-button-prev {
    left: 10px;
}
