body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
}

.avis-container {
    height: 302px;
    /* background-color: #fff; */
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    overflow: hidden; /* Hide overflow */
    position: relative;
}

.avis-wrapper {
    display: flex;
    animation: scroll 15s linear infinite;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-250px * 4)); /* Adjust the number of avis-content here */
    }
}

.avis-content {
    text-align: center;
    width: 250px;
    padding: 20px;
    margin: 10px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.user-info {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.user-details {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.user-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #ff5733; /* Example color, set dynamically */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    margin-right: 10px;
    flex-shrink: 0; /* Prevent the circle from shrinking */
}

.user-name {
    font-size: 20px;
    color: #333;
    font-weight: bold;
}

.stars {
    color: gold;
    margin-left: -5px; /* Adjust as needed */
}

.avis-text {
    font-size: 16px;
    line-height: 1.5;
}
