/* Styles pour les images par défaut */
.default-image {
    background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
    border: 2px dashed #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-weight: bold;
    min-height: 200px;
}

.default-agency {
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    color: #1976d2;
}

.default-vehicle {
    background: linear-gradient(135deg, #f3e5f5, #e1bee7);
    color: #7b1fa2;
}

/* Styles pour les galeries d'images */
.image-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.image-gallery img {
    max-width: 150px;
    max-height: 100px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s;
}

.image-gallery img:hover {
    transform: scale(1.05);
}

.main-vehicle-image {
    max-width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
}
