body .slideshow-container {
    margin-top: 10vh !important;
    position: relative;
    max-width: 90%;
    margin: auto;
    overflow: visible; /* Allow elements to be visible outside the container */
    height: 20vh;
}
.slide {
    display: none; /* Hide all slides by default */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
		z-index: 999;
}

.slide.active {
    display: block; /* Only the active slide is visible */
}

.slide img {
    width: 100%;
    border-radius: 5px;
}

/* Navigation cursors */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 30%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: #752763;
    font-weight: bold;
    font-size: 18px;
    border-radius: 0 3px 3px 0;
    user-select: none;
    z-index: 1000;
    text-decoration: none;
}

.next {
    right: -50px; /* Move the 'Next' button further to the right */
    border-radius: 3px 0 0 3px;
}

.prev {
    left: -50px; /* Move the 'Previous' button further to the left */
    border-radius: 0 3px 3px 0;
}


.prev:hover, .next:hover {
	text-decoration: none;
}

/* Fade Animation */
.slide.fade {
    animation: fadeEffect 1s;
}

@keyframes fadeEffect {
    from {
        opacity: 0.4;
    }
    to {
        opacity: 1;
    }
}
