.carousel-container {
    width: 100%;
    max-height: 800px;
    overflow: hidden;
    position: relative;
}

.carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-track {
    display: flex;
    transition: transform 0.4s ease-in-out;
    height: 100%;
}

.carousel-track img {
    height: 800px;
    max-height: 800px;
    width: 100%;
    object-fit: contain;
    flex-shrink: 0;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    background: rgba(0, 0, 0, 0.3);
    border: none;
    color: white;
    cursor: pointer;
    z-index: 1;
    padding: 0.5rem 1rem;
    user-select: none;
}

.carousel-button.left {
    left: 10px;
}

.carousel-button.right {
    right: 10px;
}
