body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.slideshow-container {
    position: relative;
    max-width: 80%;
    max-height: 60%;
    margin: auto;
    overflow: hidden;
    /* background-color: #000; Optional: background color for the container */
    object-fit: cover;
    padding: 10px;
}

.slide {
    display: none;
    text-align: center;
    border-radius: 10px;
    border: 2px solid #6551A2;
}

.slideshow-container img {
    width: 100%;
    height: auto;
    max-height: 500px;
    /* Define the box height */
    object-fit: cover;
    vertical-align: middle;
    border-radius: 10px;
}

/* Navigation controls (same as before) */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}


.slideshow-header {
    text-align: center;
    padding: 10px;
}

.slideshow-header h2 {
    color: white;
    border: 2px solid #6551A2;
    margin: auto;
    width: fit-content;
    border-radius: 10px;
    background-color: #1D8D89;


}