.carousel-container {
    width: 100%;
    overflow-x: hidden;
    overflow-y: hidden;
    padding: 10px 0;
    box-sizing: border-box;
}

.carousel-track {
    display: flex;
    flex-wrap: nowrap;
    width: max-content;
}

.carousel-item {
    flex: 0 0 250px;
    margin-right: 10px;
}

.carousel-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}
