.gallery h2 {
    margin-top: 1rem;
}

.slideshow-container {
    position: relative;
    width: 100%;
    margin: auto;
    max-width: 2000px;
    overflow: hidden;
    height: 320px;
    user-select: none;
}

.slide-wrapper {
    position: relative;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide {
    position: absolute;
    top: 50%;
    left: auto; /* Centrarea pe orizontală */
    transform: translate(-50%, -50%); /* Corectarea poziționării */
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

.slide img {
    width: 400px; /* Poate fi ajustată în funcție de dimensiunea dorită */
    max-width: 100%;
    display: block;
    border-radius: 10px;
    pointer-events: none;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    /* background-color: rgba(0, 0, 0, 0.5); */
    color: #fff;
    border: none;
    padding: 0 10px;
    cursor: pointer;
    z-index: 10;
}

.prev {
    left: 0;
}

.next {
    right: 0;
}

@media(max-width:700px) {
    
    .gallery h2 {
        margin-top: 2rem;
    }

    .slideshow-container {
        height: 275px;
    }

    .slide img {
        width: 310px;
    }
    
}