/* [Global changes] Hide the Donate button */

.btn-primary.btn.donate.minimal {
display: none;
}

/* [Global changes] Modify card when checkbox is selected */
.grid-card.card:has(input:checked) {
box-shadow: 0 0 0 1px var(--primary,rgba(255, 255, 255, 0.30));
}

/* [Gallery tab] Hides the lightbox header and footer to make the image area larger. Mouse reveals them as an overlay to the image*/

.Lightbox-header,
.Lightbox-footer{
z-index:9999;
position:absolute;
width:100%;
opacity:0;
background-color:#0008;
transition: opacity 0.5s ease;
}

.Lightbox-footer{
bottom:0;}

.Lightbox-navbutton{
opacity:0;
transition: opacity 0.5s ease;
}


.Lightbox-navbutton:hover,
.Lightbox-header:hover,
.Lightbox-footer:hover{
opacity:1;
}


/* [Scenes tab] Hide studio logo/text from scene card */

.scene-studio-overlay,
.studio-overlay {
display: none;
}
