#carousel-slides {
    display: flex;
    transition: transform 0.8s ease-in-out;
}

.slide {
    min-width: 100%;
    transition: opacity 0.5s ease-in-out;
}

.dot {
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: #10b981;
    /* Green color */
}