﻿/* Lightbox Styles */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    overflow: auto;
}

.lightbox-image {
    display: block;
    max-width: 90%;
    max-height: 80vh;
    margin: 60px auto;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    box-sizing: border-box;
}

.lightbox-prev, .lightbox-next {
    color: white;
    font-size: 40px;
    cursor: pointer;
    user-select: none;
}

.lightbox-caption {
    color: white;
    text-align: center;
    padding: 10px 0;
    position: absolute;
    bottom: 20px;
    width: 100%;
}

#lightbox-counter {
    margin-right: 20px;
}
