/* Style the gallery */
.gallery-container img {
    width: 100%; /* Adjust as necessary */
    height: auto;
    padding: 5px;
    display: block;
    margin: 0 auto;
}

/* Style the modal */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1000; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
    padding-top: 60px;
}

.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* Image caption */
#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}

/* Responsive columns of images */
@media screen and (max-width: 700px) {
    .modal-content {
        width: 95%;
    }
}

.left-arrow, .right-arrow {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: white;
    user-select: none;
    padding: 16px;
    z-index: 1100;
    background-color: rgba(0,0,0,0.5); /* Semi-transparent background */
}

.left-arrow {
    left: 10px;
}

.right-arrow {
    right: 10px;
}

/* Gallery images */
.cover-image {
    width: 100%; /* Adjust width as necessary */
    height: 200px; /* Fixed height for all images */
    object-fit: cover; /* Ensures the image covers the area without distorting aspect ratio */
    border-radius: 4px; /* Optional: adds rounded corners */
}

/* Navigation bar adjustments */
/* .navbar-nav .dropdown-menu {
    position: static;
    float: none;
}

.top-navbar .navbar-brand img {
    max-height: 100px;
} */
