.slideshow-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 100vh;
    margin: 0 auto;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    margin: auto;
}

/* Ensure full screen display */
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
}

/* Responsive design */
@media (max-width: 768px) {
    .slideshow-container {
        height: 100vh;
    }

    .slide img {
        width: 100%;
        height: auto;
    }
}

/* Remove any focus outlines */
.slideshow-container:focus {
    outline: none;
}