.fullscreen-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.fullscreen-image {
    max-width: 90vw;
    max-height: 90vh;
    min-width: calc(min(90vw, 90vh));
    min-height: calc(min(90vw, 90vh));
    object-fit: contain;
}

.close-button {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #fff;
    border: none;
    padding: 10px 15px;
    font-size: 18px;
    cursor: pointer;
}


.carousel {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
    
.carousel-container {
    margin-top: 50px;
    width: 90%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
    
.carousel-button {
    font-size: 16px;
    text-align: center;
    width: 50px;
    height: 250px;
    border-radius: 0%;
    border: none;
    opacity: 50%;
    border-left: 1px solid black;
    border-right: 1px solid black;
}

.carousel-button .full {
    height: 50vh;
}
    
.carousel-button:hover {
    opacity: 100%;
    cursor: pointer;
}
    
.image-container {
    display: flex;
    align-items: center;
    width: 80%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}
    
.image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    max-width: 100%;
    min-width: 100%;
}
    
.wrapper-1 {
    transition: margin 1s;
}
    
.carousel-image {
    padding: 10px;
    max-width: 100%;
    max-height: 100%;
}
    
.button-container-small {
    display: flex;
    justify-content: space-evenly;
    width: 100%;
}
    
.carousel-button-small {
    display: none;
}
    
.carousel-button-small:hover {
    opacity: 100%;
    cursor: pointer;
}
    
    
@media (max-width: 1000px) {
    .image-container {
        width: 100%;
    }
    
    .button-container {
        margin-bottom: 0px;
    }
    
    .carousel-button {
        display: none;
    }
    
    .carousel-button-small {
        display: flex;
        flex-direction: row;
        font-size: 16px;
        padding: 10px 10% 10px 10%;
        border-radius: 0%;
        border: none;
        opacity: 50%;
        border-left: 1px solid black;
        border-right: 1px solid black;
    }
    }
    
    @media (max-width: 700px) {
    .carousel-container {
        width: 100%;
    }
}
    