a {
    text-decoration: none;
}

/* Styles personnalisés pour les cartes */
.card {
    /* border: 1px solid #ddd; */
    border-radius: 8px;
    transition: transform 0.2s;
}

.card:hover {
    transform: scale(1.02); /* Effet de zoom au survol */
}

.card-img-top {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    height: 200px;
    object-fit: cover;
}

.card-footer {
    background-color: #f8f9fa;
    border-top: 1px solid #ddd;
}

/* Bouton "Voir plus" */
.btn-primary {
    background-color: #0073e6;
    border-color: #0073e6;
}

.btn-primary:hover {
    background-color: #005bb5;
    border-color: #005bb5;
}

/* Carrousel de voitures */
.vehicules-bandeau {
    margin: 20px 0;
}

.vehicule-miniature {
    margin: 0 10px;
    text-align: center;
    background: rgba(255, 255, 255, 0.8); /* Fond semi-transparent */
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Ombre légère */
}

.vehicule-miniature img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.vehicule-info {
    margin-top: 10px;
}

.vehicule-info h6 {
    font-size: 16px;
    margin: 0;
}

.vehicule-info p {
    font-size: 14px;
    color: #666;
    margin: 5px 0 0;
}

/* Style des flèches de navigation */
