/* ── Immich Foto-Galerie ─────────────────────────────────────────────────── */

.immich-tile {
    border-radius: 8px;
    overflow: hidden;
    background: #f1f5f9;
    cursor: pointer;
    transition: transform .15s ease;
    aspect-ratio: 4/3;
    position: relative;
}
.immich-tile:hover { transform: translateY(-2px); }

.immich-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ── Lightbox ────────────────────────────────────────────────────────────── */

#immichLightboxModal .modal-content { background: transparent; border: 0; }
#immichLightboxModal .modal-body    { padding: 0; text-align: center; }

#immichLightboxImage {
    max-height: 88vh;
    width: auto;
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .35);
}

.immich-nav-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: .9;
}
.immich-nav-btn:disabled { opacity: .35; }
