.marquee-wrapper {
    margin-top: 20px;
    position: relative;
    overflow: hidden;
    /* border: 2px solid #ccc; */
    padding: 10px;
}

.marquee-scroll {
    white-space: nowrap;
    overflow: hidden;
    scroll-behavior: smooth;
}

.marquee-scroll img {
    height: 150px;
    margin: 0 5px;
    cursor: pointer;
    display: inline-block;
    transition: transform 0.2s;
}

.marquee-scroll img:hover {
    transform: scale(1.1);
}

.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 24px;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
}

.scroll-left {
    left: 0;
}

.scroll-right {
    right: 0;
}