﻿#nihilo-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

    #nihilo-lightbox.open {
        display: flex;
    }

    #nihilo-lightbox .lb-backdrop {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.85);
    }

    #nihilo-lightbox .lb-img {
        position: relative;
        max-width: 90vw;
        max-height: 90vh;
        object-fit: contain;
        border-radius: 4px;
    }

    #nihilo-lightbox .lb-close,
    #nihilo-lightbox .lb-prev,
    #nihilo-lightbox .lb-next {
        position: absolute;
        background: none;
        border: none;
        color: var(--nh-color-foreground);
        cursor: pointer;
        font-family: 'Material Symbols Rounded';
        font-size: 2rem;
        z-index: 1;
    }

    #nihilo-lightbox .lb-close {
        top: 1rem;
        right: 1rem;
    }

    #nihilo-lightbox .lb-prev {
        left: 1rem;
    }

    #nihilo-lightbox .lb-next {
        right: 1rem;
    }
