/* Slideshow Styles */
.slideshow-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1000px;
    margin: 1rem auto;
}

.slideshow-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
}

.slide-image-container {
    /* Using the existing glass style but ensuring fixed size or max size */
    margin: 0.8rem;
    /* width: 100%; */
    /* Or auto, controlled by content or flex */
}

/* Ensure images don't jump around too much */
.slide-image-container img {
    max-height: 500px;
    /* Limit height */
    object-fit: cover;
    transition: opacity 0.3s ease-in-out;
}

.arrow-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: transform 0.2s;
    flex-shrink: 0;
    /* Don't shrink the arrows */
}

.arrow-btn:hover {
    transform: scale(1.1);
}

.arrow-img {
    width: 50px;
    /* Adjust size as needed */
    height: auto;
    filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.5));
}

.left-arrow .arrow-img {
    transform: rotate(180deg);
    filter: drop-shadow(2px -2px 2px rgba(0, 0, 0, 0.5));
}
