.slideshow-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

/* Hide the images by default */
.mySlides {
    display: none;
    position: relative; /* Ensure image stays inside container */
}

.mySlides img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* Navigation buttons */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 5px 3px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: background-color 0.3s ease;
    user-select: none;
    background-color: rgba(0, 0, 0, 0.4); /* Semi-transparent background */
    z-index: 10;
}

/* Position buttons on left and right */
.prev {
    left: 10px;
    border-radius: 3px;
}

.next {
    right: 10px;
    border-radius: 3px;
}

/* Hover effect */
.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8); /* Darker on hover */
}
