.slideshow-container {
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    background: #f9f5f0; /* Fallback hvis ingenting vises */
}

.slideshow-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.8s ease-in-out; /* Litt roligere fade */
}

.slideshow-container img.active {
    opacity: 1;
}

@media (max-width: 768px) {
    .slideshow-container {
        height: 280px;
    }
}

