.prev, .next {
    cursor: pointer;
    position: fixed;
    top: 50%; 
    width: auto;
    padding: 10px; 
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    transform: translateY(-50%); 
    z-index: 1; 
}


.prev {
    left: 5%;
}

.next {
    right: 5%; 
}

.prev, .next {
    cursor: pointer;
    position: fixed; 
    top: 50%;
    width: auto;
    padding: 10px; 
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    transform: translateY(-50%); 
    z-index: 1; 
}


.prev {
    left: calc(5% + 10px);
}

.next {
    right: calc(5% + 10px); 
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Adjust the carousel container */
#carouselContainer {
    position: fixed;
    left: 50%; 
    top: 25%; 
    width: 350px; /* BUTTON GAP */
    transform: translateX(-50%); 
    overflow: hidden;
    z-index: 999;
}

/* Image styles */
#carouselContainer img {
    width: 100%; 
    height: 100%; 
    display: block; 
    margin: 0 auto;
    object-fit: cover; 
}
#image-carousel {
    position: relative; 
    height: 350px; /* IMAGE HEIGHT */
}

.splide__slide {
    margin-bottom: 10px;
}