.slideshow-container {
    position: relative;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
}

.slide-label {
    position: absolute;
    color: #fff;
    /* padding: 5px 10px;
    padding-left: 12px; */
    right: 0;
    /* bottom: 10px; */
    font-size: 18px;
    z-index: 1100;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
}

.slide-progress {
    position: absolute;
    width: 100%;
    height: 23px;
    left: 0;
    bottom: 10px;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 900;
}

.slide-nav {
    position: absolute;
    left: 0;
    top: 7px;
    /* padding-left: 10px; */
    z-index: 1000;
    /* background-color: rgba(0, 0, 0, 0.5); */
    width: 100%; 
    /* height: 23px; */
    display: flex;
    align-items: center;
    justify-content: start; 
}

.slide-nav-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    margin-right: 5px;
    cursor: pointer;
    transition: all 0.5s;
}

.slide-nav-dot:hover {
    background-color: rgba(255, 255, 255, 1);
}

.slide-nav-dot-active {
    background-color: rgba(255, 255, 255, 1);
    cursor: none;
}