/* styles.css */
/* body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
} */

.gallery-container {
    width: 100%;
    max-width: 600px;
}

.main-image {
    width: 100%;
    height: 520px;
    margin-bottom: 10px;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 1px solid #ddd;
    cursor: pointer;

}

.thumbnail-navigation {
    display: flex;
    align-items: center;
}

.thumbnails-wrapper {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.thumbnails {
    /* display: flex; */
    transition: transform 0.3s;
}

.thumbnails img {
    height: 100px;
    width: 100px;
    object-fit: cover;
    cursor: pointer;
    border: 1px solid #ddd;
    opacity: 0.5;
    transition: opacity 0.3s;
    margin-right: 10px;
}

.thumbnails img.active {
    opacity: 1;
}

.thumbnails img:hover {
    border: 1px solid #333;
}

.thumb-prev,
.thumb-next {
    cursor: pointer;
    font-size: 20px;
    user-select: none;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
}

/* Lightbox styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
}

.lightbox-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    margin-top: 10%;
}

.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.3s;
    user-select: none;
}

.prev {
    left: 0;
}

.next {
    right: 0;
}

.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}



a.btn {
    font-family: 'Montserrat', sans-serif;
    display: inline-block;
    background-color: #12385d;
    color: white;
    padding: 16px;
    margin: 20px 0px;
    border-radius: 4px;
}

a.btn:hover {
    background-color: #95b8c2;
}
