#lightbox-preview {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.4);
    /*transform: scale(0.8);*/
    transition: transform 0.3s, opacity 0.3s;
    opacity: 0;
}

#lightbox-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 7px;
    position: relative;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    transform: scale(0.7);
    transition: transform 0.3s;
}

#lightbox-container img {
    max-height: calc(100% - 100px);
    box-shadow: 0 0 20px 0 rgba(0,0,0,.3);
}

#lightbox-container button {
    margin: 0 !important;
    background-color: #F75C4C;
    color: white;
    padding: 0 10px !important;
    border-radius: 5px;
}