.location-vehicules {
    padding: 20px 0;
}

.carte-vehicule {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.carte-vehicule:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.carte-vehicule .card-img-top {
    height: 200px;
    object-fit: cover;
}

.filtres {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.infos-vehicule {
    border-top: 1px solid #dee2e6;
    padding-top: 10px;
}