.center-button {
    text-align: center;
        font-size: 2em;
}
.tot{
	display:flex;
	justify-content: center;
	align-items :center;
}


.gauche{
	width:29%;
	height:100%;
	overflow: hidden; 
}

.middle{
	width:2%;
}

.droite{
	width:69%;
	height:100%;
}

.gauchesp{
        width:19%;
        height:100%;
        overflow: hidden; 
}

.droitesp{
        width:79%;
        height:100%;
}

.photo{
	width:59%;
	height:100%;
}


img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}


table{
	/*border-collapse:  collapse;
	border:solid;*/
	width: 100%;
}


th{
	/*border:solid;*/
	width:50%;
}


.rouge{
	color:red;
}

.profile-pic {
    width: 50px;  /* Largeur maximale */
    height: 50px; /* Hauteur maximale pour garder une forme carrée */
    object-fit: cover; /* Recadre l'image pour qu'elle remplisse la zone */
    border-radius: 50%; /* Rond pour un effet profil */
    display: block; /* Évite les espaces vides sous l'image */
    margin: 0 auto 10px; /* Centre l'image */
}

.reviews-container-wrapper {
    width: 100%;
    overflow-x: auto; /* Active le défilement horizontal */
    white-space: nowrap; /* Empêche les avis de passer à la ligne */
    padding: 10px 0;
}

.reviews-container {
    display: flex;
    flex-wrap: nowrap; /* Empêche le retour à la ligne */
    gap: 10px; /* Espacement entre les avis */
    width: max-content; /* Force le conteneur à avoir une largeur adaptée */
max-width: 200%;
}


.review {
	min-width: 300px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
    white-space: normal; /* Permet aux textes de passer à la ligne */
}

/* Masquer la barre de défilement */
.reviews-container-wrapper::-webkit-scrollbar {
    height: 8px;
}

.reviews-container-wrapper::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.reviews-container-wrapper::-webkit-scrollbar-thumb:hover {
    background: #555;
}
