body {
    font-family: Arial, sans-serif;
    margin: 0;
    background: #C9BAAD;
    color: ##080DA7;
}

.title-container {
    text-align: center;
    margin: 20px 0;
}

.title-image {
    max-width: 100%;
    height: auto;
}

.slideshow-container {
    position: relative;
    max-width: 1000px;
    margin: auto;
    overflow: hidden;
}

.mySlides {
    display: none;
    text-align: center;
}

img {
    vertical-align: middle;
}

/* Caption Styles */
.caption {
    color: ##080DA7;
    font-size: 16px;
    padding: 8px 12px;
    position: relative;
    margin-top: 10px; /* Add margin to create space below the image */
    width: 100%;
    text-align: center;
    background: rgba(8, 13, 167, 0.8);
    color: #fff;
}

/* Fade Animation */
.fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
}

@-webkit-keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
}

@keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
}

/* Gallery Animation */
.gallery {
    -webkit-animation-name: gallery;
    -webkit-animation-duration: 1.5s;
    animation-name: gallery;
    animation-duration: 1.5s;
}

@-webkit-keyframes gallery {
    from {transform: scale(0.5);}
    to {transform: scale(1);}
}

@keyframes gallery {
    from {transform: scale(0.5);}
    to {transform: scale(1);}
}

/* Navigation Arrow Styles */
.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;
    background-color: rgba(0, 0, 0, 0.5); /* Optional: make arrows stand out */
    user-select: none;
    z-index: 10; /* Ensure arrows are on top */
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
}
