.lightbox-list-container-709bf41c {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lightbox-list-item-709bf41c {
    margin-bottom: 10px;
}

.lightbox-trigger-709bf41c {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    font-weight: 500;
    color: #333;
    transition: opacity 0.2s;
}

.lightbox-trigger-709bf41c:hover {
    opacity: 0.8;
}

.lightbox-icon-709bf41c {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
}

.lightbox-icon-709bf41c i {
    font-size: 16px;
    color: #0073aa;
}

.lightbox-icon-709bf41c svg {
    width: 16px;
    height: 16px;
    fill: #0073aa;
}

.lightbox-overlay-709bf41c {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
}

.lightbox-overlay-709bf41c.active {
    opacity: 1;
}

.lightbox-content-709bf41c {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.5);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.lightbox-overlay-709bf41c.active .lightbox-content-709bf41c {
    transform: translateY(0);
}

.lightbox-content-709bf41c img {
    max-width: 100%;
    max-height: calc(90vh - 100px);
    object-fit: contain;
    display: block;
    margin-bottom: 15px;
    border-radius: 4px;
}

.lightbox-close-709bf41c {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-close-709bf41c:hover {
    color: #ddd;
}

.lightbox-btn-download-709bf41c {
    display: inline-block;
    background: #0073aa;
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.2s;
}

.lightbox-btn-download-709bf41c:hover {
    background: #005177;
}

@media (max-width: 768px) {
    .lightbox-close-709bf41c {
        top: -30px;
        right: 0;
    }
}