/* Styles pour la collection de photos */
.photos-collection {
    border: 2px dashed #dee2e6;
    border-radius: 8px;
    padding: 20px;
    background-color: #f8f9fa;
    margin-bottom: 20px;
}

.photo-field {
    background-color: white;
    border: 1px solid #dee2e6 !important;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    position: relative;
}

.photo-field:hover {
    border-color: #007bff !important;
    box-shadow: 0 2px 4px rgba(0,123,255,0.1);
}

.remove-photo {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
}

.cursor-pointer {
    cursor: pointer;
}

.cursor-pointer:hover {
    opacity: 0.8;
    transform: scale(1.05);
    transition: all 0.2s ease;
}

/* Styles pour la prévisualisation des images */
.img-preview {
    max-width: 200px;
    max-height: 150px;
    object-fit: cover;
    border-radius: 4px;
    margin-top: 10px;
}

/* Styles pour la galerie de photos */
.photos-gallery {
    margin-top: 20px;
}

.photos-gallery h6 {
    color: #495057;
    margin-bottom: 15px;
    font-weight: 600;
}

/* Animation pour les modals */
.modal.fade .modal-dialog {
    transition: transform 0.3s ease-out;
}

/* Responsive design */
@media (max-width: 768px) {
    .photos-collection {
        padding: 15px;
    }
    
    .photo-field {
        padding: 10px;
    }
    
    .img-preview {
        max-width: 150px;
        max-height: 100px;
    }
} 