﻿.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.slideshow {
    position: relative;
    /*max-width: 80%;*/
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;   
}

    .slide.active {
        display: block;
        opacity: 1;
    }

/*img {
    width: 100%;
    height: auto;
}*/

/* Navigation Arrows */
.prev-slide, .next-slide {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 10px;
    font-size: 24px;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
}

.prev-slide {
    left: 0;
}

.next-slide {
    right: 0;
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
    .slideshow {
        max-width: 100%;
    }

    .prev-slide, .next-slide {
        font-size: 18px;
        padding: 5px;
    }
}
