/* Style pour les images placeholder */
.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    position: relative;
}

.image-placeholder img {
    max-width: 60%;
    max-height: 60%;
    opacity: 0.3;
    object-fit: contain;
}

.image-placeholder::after {
    content: 'Image non disponible';
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 14px;
    color: #999;
    font-weight: 500;
}
