.slider {
    position: relative;
    width: 100%;
    overflow: hidden; /* ซ่อนส่วนที่เกินขอบของ slider */
}
.slider-inner {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}
.slide {
    width: 100%; /* แสดงภาพเต็มความกว้างของ container */
    flex-shrink: 0;  /* ป้องกันการย่อขนาด */
}
.dots {
    text-align: center;
    position: absolute;
    bottom: 10px;
    width: 100%;
}
.dot {
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s;
}
.dot.active {
    background-color: #717171;
}
