.participants {
    display: flex;
    align-items: center;
    justify-content: center; /* Center horizontally */
}

.participant {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    overflow: hidden;

    overflow: hidden;
    margin-right: -6px;
    border: 2px solid #ffffff;
}

.participant img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.participant.plus {
    background-color: #007bff;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    border-radius: 50%;
    width: 30px;
    height: 30px;
}

.participant.plus span {
    position: absolute;
    display: block;
    width: 30px;
    height: 30px;
    line-height: 31px;
    font-size: 18px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.3);

}
