@charset "UTF-8";

#simpleCarousel {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

#carouselContainer {
    transition: transform 0.6s ease; 
    width: 100%;
}

#simpleCarousel ul {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
}

#simpleCarousel li {
    flex: 0 0 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    list-style-image: none;
}

#simpleCarousel li img {
    width: 100%;
    display: block;
}

.carousel-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.carousel-dot.active {
    background: #333;
}




