  #globalPart {
            display: flex;
            align-items: flex-start;
            justify-content: flex-start;
            flex-wrap: nowrap;
            font-family: Arial, sans-serif;
            color: #333;
            margin: 0;
            padding: 20px;
        }

        /* Bloc à gauche */
        #summaryPart {
            width: 300px;
            background-color: #fff;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            margin-right: 20px;
            flex-shrink: 0;
        }

        #summaryPart .logoLink {
            display: block;
            text-align: center;
        }

        #summaryPart .reviewGlobal {
            text-align: center;
        }

        .largeNote .big {
            font-size: 48px;
            font-weight: bold;
        }

        .largeNote .smallnote {
            font-size: 24px;
            color: #666;
        }

        .raty {
            margin-top: 10px;
        }

        .raty i {
            color: #f39c12;
            font-size: 16px;
        }

        #ratingLabel {
            display: block;
            margin-top: 10px;
            font-size: 14px;
            color: #0e559f;
        }

        .agReviewsLegal {
            margin-top: 10px;
            font-size: 12px;
            color: #666;
        }

        .agReviewsLegal svg {
            vertical-align: middle;
            margin-left: 5px;
        }

        /* Bloc des avis qui défilent */
        .review-container {
            display: flex;
            flex-wrap: nowrap;
            overflow-x: auto;
	    overflow-y: hidden;
            gap: 20px;
	    max-height:350px;
            width: calc(100% - 340px); /* Ajuster l'espace restant */
            /*max-height: 180px;  Limiter la hauteur */
        }

        /* Scrollbar styling */
        .review-container::-webkit-scrollbar {
            height: 8px;
        }

        .review-container::-webkit-scrollbar-track {
            background: #f5f5f5; /* Couleur de la piste */
        }

        .review-container::-webkit-scrollbar-thumb {
            background-color: #0e559f; /* Couleur de la barre de défilement */
            border-radius: 10px;
            border: 2px solid #f5f5f5; /* Créer un espacement autour de la barre de défilement */
        }

        .splide__slide {
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            padding: 20px;
            width: 300px; /* Largeur fixée */
            height: auto; /* Hauteur dynamique */
            flex: 0 0 auto;
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .review-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .review-picto {
            width: 30px;
            height: 30px;
        }

        .raty i {
            color: #f39c12;
            font-size: 16px;
        }

        .review-infos span {
            font-size: 12px;
            color: #999;
        }

        .review-text {
            font-size: 14px;
            color: #666;
            overflow: auto;
            text-overflow: ellipsis;
        }
        /* Scrollbar styling */
        .review-text::-webkit-scrollbar {
            height: 8px;
        }

        .review-text::-webkit-scrollbar-track {
            background: #f5f5f5; /* Couleur de la piste */
        }

        .review-text::-webkit-scrollbar-thumb {
            background-color: #0e559f; /* Couleur de la barre de défilement */
            border-radius: 10px;
            border: 2px solid #f5f5f5; /* Créer un espacement autour de la barre de défilement */
        }

        .author {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .author-picto svg {
            width: 20px;
            height: 20px;
        }

        .author-infos {
            font-size: 12px;
        }

        .author-infos .author-pseudo {
            font-weight: bold;
        }

        .author-authenticated span {
            font-size: 9px;
            text-transform: uppercase;
            color: green;
            letter-spacing: 0px;
            font-weight: bold;
        }

        .author-authenticated svg {
            margin-left: 10px;
            width: 9px;
            height: 9px;
        }

        /* Styles pour la réponse du propriétaire */
        .reply {
            background-color: #f0f8ff;
            padding: 10px;
            border-left: 4px solid #0e559f;
            margin-top: 15px;
            border-radius: 5px;
            font-style: italic;
            font-size: 14px;
	    height:100px;
	    overflow:auto;
            color: #333;
        }
	/* Scrollbar styling */
        .reply::-webkit-scrollbar {
            height: 8px;
        }

        .reply::-webkit-scrollbar-track {
            background: #f5f5f5; /* Couleur de la piste */
        }

        .reply::-webkit-scrollbar-thumb {
            background-color: #0e559f; /* Couleur de la barre de défilement */
            border-radius: 10px;
            border: 2px solid #f5f5f5; /* Créer un espacement autour de la barre de défilement */
        }

        /* Styles pour les guillemets */
        .svg-quote {
            position: absolute;
            top: 5px;
            right: 5px;
            width: 24px;
            height: 24px;
        }

        #staticSummary {
            width: 200px;
            height: 100px;
            background-color: #fff;
            padding: 15px;
            border-radius: 0px 10px 0px 0px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            position: fixed;
            left: 0px;
            bottom: 0px;
            display: flex;
            align-items: center;
            padding:15px;
            z-index:200;

        }
        #staticSummary .raty{
        margin-top:0px;
        }
        #staticSummary .summary-content {
            display: flex;
            justify-content: space-between;
            width: 100%;
        }

        #staticSummary .note-container {
            text-align: left;
        }

        #staticSummary .largeNote {
            font-size: 36px;
            font-weight: bold;
            color: #333;
        }

        #staticSummary .smallnote {
            font-size: 18px;
            color: #666;
        }

        #ratingLabel {
            display: block;
            font-size: 14px;
            color: #0e559f;
            margin-top: 5px;
        }

        #staticSummary .logoLink img {
            margin-top:15px;
            width: 70px;
            height: auto;
        }


        /* Responsive layout pour mobile */
        @media (max-width: 768px) {
            #globalPart {
                flex-direction: column;
                align-items: center;
            }

            #summaryPart {
                width: 100%;
                margin-right: 0;
                margin-bottom: 20px;
            }

            .review-container {
                width: 100%;
            }
            #staticSummary .logo-container {

            }

            .splide__slide {
                width: calc(100% - 40px); /* Largeur ajustée pour s'adapter au mobile */
            }

            .largeNote .big {
                font-size: 36px;
            }

            .largeNote .smallnote {
                font-size: 18px;
            }

            #staticSummary {
              width: 100px;
              height: 50px;
              z-index:99999;
            }
            #staticSummary .logoLink img {
                margin-top:15px;
                width: 35px;
                height: auto;

            }
            #staticSummary .largeNote {
                font-size: 15px;
                margin-top: 15px;
                line-height: 20px;
            }

            #staticSummary .smallnote {
                font-size: 9px;
                color: #666;
            }
            #staticSummary #ratingLabel {
              font-size:7px;
              margin-top:0px;
            }
            #staticSummary .raty i {
            color: #f39c12;
            font-size: 9px;
                }
                #staticSummary .raty {
                margin-top:-10px;
                    }


        }
