/* Contraindre la taille des cartes et des images */
.card {
    height: 100%;
}
.card-title {
    font-size: 1.2rem;
    text-align: center;
}
.card-img-top {
    height: 450px;
    object-fit: cover;
}
.card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Style personnalisé pour le bouton "Offrir cet objet" */
.btn-offer {
    background-color: #96ABB1;
    color: white;
    border: none;
}

.btn-offer:hover {
    background-color: #7F979C;
    color: white;
}

/* Augmente la taille du texte pour le prix */
.card-text .price {
    font-size: 1.5rem; /* Ajustez la taille selon vos besoins */
    font-weight: bold;
}
