/* Parent container */
.mod_jo_slideshow {
    width: 100%; /* Full width of the parent container */
    margin: 0 auto; /* Center the container */
    overflow: hidden; /* Prevent content overflow */
}

/* Swiper container */
.swiper-container {
    width: 100%; /* Full width of the parent container */
    position: relative;
    overflow: hidden;
}

/* Slides */
.swiper-slide {
    width: 100%;
    height: 100%; /* Match the container height */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; /* Prevent content overflow */
}

/* Images inside slides */
.swiper-slide img {
    width: 100%;
    height: 100%; /* Match the slide height */
    object-fit: cover; /* Scale images proportionally to cover the slide */
    display: block;
}


.folder-suggestions {
    position: absolute;
    background: white;
    border: 1px solid #ccc;
    max-height: 150px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    width: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.suggestion-item {
    padding: 8px;
    cursor: pointer;
}

.suggestion-item:hover {
    background-color: #f0f0f0;
}