.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-overlay img {
    max-width: 150%;
    max-height: 150%;
    width: 500px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 0 30px black;
}

.lightbox-close {
    position: fixed;
    top: 20px;
    right: 30px;
    font-size: 3.5rem;
    color: white;
    cursor: pointer;
    z-index: 10000;
    user-select: none;
}