.mySlides {
    display: none
}

.mySlides img {
    vertical-align: middle;
    height: 600px;
    width: 100%;
    object-fit: cover;
}

/* Slideshow container */
.slideshow-container {
    position: relative;
    margin: auto;
}

/* Full-width banner style */
.slideshow-container.full-width {
    width: 100%;
    max-height: 600px;
}

.slideshow-container.full-width .mySlides img {
    object-fit: cover;
}

/* Square gallery style */
.slideshow-container.square-gallery {
    width: 500px;
    height: 400px;
    border-radius: 13px;
    border: 2px solid #212121;
}

.slideshow-container.square-gallery .mySlides img {
    object-fit: cover;
    height: 400px;
    width: 100%;
    border-radius: 10px;
}

/* Next & previous buttons */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 1.1rem;
    transition: 0.6s ease;
    border-radius: 3px;
    user-select: none;
}

/* Position the "next button" to the right */
.next {
    right: 0;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.dot-container {
    position: absolute;
    display: flex;
    gap: 12px;
    bottom: 10px;
    margin-bottom: 10px;
}

.dot-container.center {
    width: 100%;
    justify-content: center;
}

/* Outer dot container */
.dot {
    cursor: pointer;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    overflow: hidden;
    border: 2px solid #ffff;
}

/* Background layer (always visible) */
.dot-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #e0e0e0; /* Inactive color */
    border-radius: 50%;
    transition: background-color 0.5s ease;
}

/* Progress fill layer */
.dot-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background-color: #b5b56e; /* Fill color */
    z-index: 1;
    transition: width 50ms linear;
}

/* Active state */
.dot.active .dot-bg {
    background-color: #f0f0f0; /* Slightly different background when active */
}

/* Hover state */
.dot:hover .dot-bg {
    background-color: #d0d0d0;
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {

    .prev,
    .next {
        font-size: 0.688rem
    }
}