body{
    font-family: 'Google Sans';
}


.photo-stack {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}

.photo-box {
    width: 90px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
    background: #f1f1f1;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo-box img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
}

.photo-box.placeholder {
    color: #999;
    font-size: 12px;
}




/* Lightbox admin */
.admin-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.admin-lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
    box-shadow: 0 0 30px rgba(0,0,0,0.6);
    animation: zoomIn 0.2s ease;
}

@keyframes zoomIn {
    from { transform: scale(0.9); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}

/* curseur */
.admin-photo {
    cursor: zoom-in;
}