

.slideshow-container {
    font-family: sans-serif;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f0f0f0;
    max-width: 600px;
    position: relative;
    margin: auto;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-radius: 8px;
}

/* Ẩn các ảnh theo mặc định */
.mySlides {
    display: none;
}

/* Các chấm tròn */
.dot {
    height: 15px;
    width: 15px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
    cursor: pointer;
}

/* Đổi màu khi active */
.active, .dot:hover {
    background-color: #2196F3; /* Màu xanh */
}