.carousel-container {
    display: flex;
    padding-top: 20px;
    overflow: hidden;
}

.button-container {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    gap: 10px;
}

.carousel-items {
    display: flex;
    white-space: nowrap;
    width: 100%;
}

.carousel-item {
    display: flex;
    white-space: nowrap;
    width: 100%;
}

.carousel-button {
    position: absolute;
    top: 0;
    right: 0;
    width: 25px;
    height: 25px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-button.left {
    margin-right: 30px;
}

.carousel-button.right {
    margin-right: 0;
}

@media (max-width: 768px) { 
    .carousel-container {
        width: 95%; 
    }

    .carousel-item {
        width: 150px;
        height: 100px;
    }
}