body {
    background-color: transparent !important;
}
.carousel img {
    width: 30px;
    max-height: 70px;
    border-radius: 50%;
    margin-right: 1rem;
    overflow: hidden;
}
.carousel-inner {
    padding: 1em;
}

@media screen and (min-width: 576px) {
    .carousel-inner {
        display: flex;
        width: 90%;
        margin-inline: auto;
        padding: 1em 0;
        overflow: hidden;
    }
    .carousel-item {
        display: block;
        margin-right: 0;
        flex: 0 0 calc(100% / 2);
    }
}
@media screen and (min-width: 768px) {
    .carousel-item {
        display: block;
        margin-right: 0;
        flex: 0 0 calc(100% / 3);
    }
}
.carousel .card {
    margin: 0 0.5em;
    border: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /*height: 100%;  Ajout pour que toutes les cartes aient la même hauteur */
}

.card-body {
    flex-grow: 1;
}

.card-text {
    min-height: 150px; /* Ajustez cette hauteur selon le contenu des avis */
}

.carousel-control-prev,
.carousel-control-next {
    width: 3rem;
    height: 3rem;
    background-color: grey;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.star {
    color: #ffd631;
}

.quote {
    color: #ffd631;
}
.profile-pic-wrapper {
    position: relative;
    display: inline-block;
}

.profile-pic {
    width: 70px; /* Ajustez la taille si nécessaire */
    height: 70px;
    border-radius: 50%;
    background: #0070fc;
}

.prefix {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 50px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Optionnel pour améliorer la lisibilité */
    pointer-events: none;
}
.google-logo {
    width: 10px; /* Ajustez la taille selon vos besoins */
    height: auto; /* Garde les proportions de l'image */
    margin-left: auto;
    margin-right: 0;
}
