#top-slider {
    width: 100%;
    margin: 0;
    padding: 0;
}

#image-scroll-container {
    width: 100%;
    height: 180px; 
    background-size: auto 100%;
    background-position: 0 center;
    transition: background-position 0.5s ease; 
}

.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    cursor: pointer;
    padding: 10px;
    border-radius: 5px;
    font-size: 20px;
}
.scroll-btn.left {
    left: 10px;
}
.scroll-btn.right {
    right: 10px;
}
.scroll-btn:hover {
    background-color: rgba(0, 0, 0, 0.7);
}
