.lightbox-wrapper {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, .5);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    display: none;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.close-lightbox {
    position: absolute;
    top: 0;
    right: 0;
    width: 58px;
    padding: 8px 7px 12px 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px;
    font-size: 2rem;
    background: var(--color-text-default);
    color: var(--color-bg-default);
    border-radius: 500px;
    cursor: pointer;
}

.lightbox-image {
    width: auto;
    max-height: 90%;
    max-width: 80%;
    height: auto;
    z-index: 100;
    border-radius: 12px;
}

.notion-image, .notion-collection-card {
    cursor: pointer!important;
}