

.avis-container {
    width: 80%;
    max-width: 600px;
    overflow: hidden;
    position: relative;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.avis-list {
    display: flex;
    flex-direction: column;
    transition: transform 0.5s ease-in-out;
}

.avis {
    padding: 20px;
    border-bottom: 1px solid #eee;
    opacity: 0.6;
}

.avis.active {
    opacity: 1;
    border: 2px solid #F7941D;
    border-radius: 5px;
}

.stars {
    color: #f5c518;
    margin-bottom: 10px;
}

.message {
    font-size: 1rem;
    margin-bottom: 10px;
}

.client {
    font-size: 0.9rem;
    color: #555;
}

.avis:last-child {
    border-bottom: none;
}