/* Mise en forme de la fiche chat*/
.fiche-chat {
  display: flex;
  flex-direction: column;    
  max-width: 700px;
    margin: 50px auto;
    padding: 30px;
    background-color: #E8E8E8;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    font-family: 'bellota', sans-serif;
    color: #4B4B4B;
}

.fiche-donnees {
    margin-top: 8px;
    color: #4B4B4B;
    padding : 24px;
	background-color: #ffffff;
	border-radius: 75px;
}

.fiche-header {
    display: flex;
	flex-wrap: wrap;
    gap: 10px;
    padding-bottom: 10px;
}

.fiche-photo {
    width: 250px;
    height: 250px;
    margin: 8px 0 0 -40px;
}
.fiche-photo img {
  width: 100%;
  height: 100%;
  border: 5px solid #B21420;
  border-radius: 50px;
  object-fit: cover;
}

.fiche-titre{
	flex: 1; /* Prend tout l’espace restant */
	display: flex;
	flex-direction: column;
	min-width : 200px;
	gap : 10px;
	text-align : center;
	justify-content: center;
	margin-top : 10px;
}
.fiche-titre h1 {
    margin: 0;
    font-size: 2rem;
    color: #444;
}

.fiche-histoire {
    font-size: 1rem;
    color: #4B4B4B;
}

.fiche-commentaire {
    margin: 20px 0;
    font-size: 1rem;
    color: #4B4B4B;
    font-weight: 600;
    text-align: center;
}

/*mise en forme des infos complémentaires (entente et maladie)*/
.fiche-infos-supplementaires {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
	justify-content: space-around;
	margin-top: 10px;
}

.fiche-info-item {
    width: 250px;
	text-align: center;
}

.fiche-info-label {
    font-size: 0.8rem;
	font-weight: 400;
}

.fiche-info-value {
    font-weight: bold;
    font-size: 0.8rem;
}


/* Mise en forme bouton retour */
.fiche-retour {
    margin-top: 30px;
    text-align: center;
}

.btn-retour {
    display: inline-block;
    padding: 10px 20px;
    background-color: #B21420;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 10px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-retour:hover {
    background-color:#ffffff;
  	color : #4B4B4B;
    transform: scale(1.05);
}
