/* Lightbox styling */
.lightbox {
    display: none;
    /* Hidden by default */
    position: fixed;
    z-index: 9999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80%;
}

.lightbox .close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.gallery-item img {
    cursor: pointer;
    /* Hand icon */
}

.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    font-size: 50px;
    padding: 16px;
    color: #fff;
    font-weight: bold;
    user-select: none;
    transform: translateY(-50%);
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

.prev:hover,
.next:hover {
    color: #f1c40f;
}

a:not([href]) {
    color: #8d8989;
    text-decoration: none;
}