/* Gallery Container Styles */
.gallery-container {
    text-align: center;
    margin-bottom: 50px;
    /* Ensure enough space between the gallery and other elements */
}

/* Main Image Styles */
.main-image img {
    width: 100%;
    max-width: 600px;
    margin: auto;
    display: block;
}

/* Thumbnail Scroll Container */
.thumbnail-scroll-container {
    overflow-x: auto;
    white-space: nowrap;
    padding: 10px 0;
    margin-top: 20px;
}

/* Thumbnails */
.thumbnails img {
    width: 80px;
    display: inline-block;
    margin-right: 10px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

/* Hover effect for Thumbnails */
.thumbnails img:hover {
    opacity: 0.7;
}

/* Active Thumbnail */
.active-thumbnail {
    border: 2px solid #007BFF;
    opacity: 0.7;
}

/* Description below the featured image */
.image-description {
    margin-top: 10px;
    font-size: 16px;
    color: #333;
}