.carousel {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    overflow: hidden;
}

.carousel-inner {
    display: flex;
    align-items: center;
    transition: transform 0.5s ease-in-out;
}


.carousel button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
}

#prevBtn {
    left: 0;
    color: white;
    font-weight: bold;
    padding: 10px 20px;
}

#nextBtn {
    right: 0;
    color: white;
    font-weight: bold;
    padding: 10px 20px;
}