.wsd-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.wsd-lightbox-content {
    width: 90%;
    max-width: 800px;
    height: 90%;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wsd-lightbox-content model-viewer {
    width: 100%;
    height: 100%;
}

.wsd-lightbox-enabled {
    cursor: zoom-in;
}

.wsd-lightbox-close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    color: white;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 2000;
    display: block; 
    padding-top: 5px;
    line-height: 40px;
}

@media(max-width: 500px){
    .wsd-lightbox-close{
        color: black;
        top: 2em;
        right: 1em;
    }
}
