.carousel-container {
    position: relative;
    max-width: 1200px;
    margin: auto;
}

.carousel-slide {
    position: relative;
    height: 0;
    width: 100%;
    overflow: hidden;
    opacity: 0;
    transition: all 0.5s ease-in-out;
    background-color: rgba(0, 0, 0, 0.9);
}

.carousel-slide .image-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.carousel-slide .image-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    height: auto;
}

.prev-button,
.next-button {
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    font-size: 20px;
    color: white;
    background-color: #333;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    z-index: 999;
}

.prev-button {
    left: 10px;
}

.next-button {
    right: 10px;
}
