.app-lightbox-trigger {
    cursor: zoom-in;
}

.app-lightbox-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: rgba(15, 23, 42, 0.82);
    backdrop-filter: blur(4px);
}

.app-lightbox-overlay.is-open {
    display: flex;
}

.app-lightbox-dialog {
    position: relative;
    max-width: min(92vw, 1100px);
    max-height: 92vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-lightbox-image {
    display: block;
    max-width: 100%;
    max-height: 92vh;
    border-radius: 0.75rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    background: #fff;
}

.app-lightbox-close {
    position: absolute;
    top: -0.75rem;
    right: -0.75rem;
    width: 2.5rem;
    height: 2.5rem;
    border: 0;
    border-radius: 999px;
    background: #fff;
    color: #111827;
    font-size: 1.75rem;
    line-height: 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.app-lightbox-close:hover {
    background: #f3f4f6;
}
