.matter-client-card__container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background-color: #fff;
    border-radius: 6px;
    overflow: hidden;
}

.matter-client-card__title {
    font-size: 1.6rem;
    font-weight: 600;
    padding: 0.8rem;
    background-color: #d9d9d9;
    color: #67757e;
    text-align: center;
}

.matter-client-card__content {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 1.5rem;
    padding: 0 2rem 2rem;
}

.matter-client-card__profile {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 2rem;
    border-bottom: 1px dashed #ccc;
    padding-bottom: 1.5rem;
}

.matter-client-card__profile img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.matter-client-card__login {
    width: 100%;
    display: flex;
    align-items: center;
    border-bottom: 1px dashed #ccc;
    padding-bottom: 1.5rem;
}

.matter-client-card__online {
    display: inline-block;
    width: 7px;
    height: 7px;
    background-color: #3cada4;
    border-radius: 50%;
    margin: 0 0.2rem 0 0.8rem;
}

.matter-client-card__offline {
    display: inline-block;
    width: 7px;
    height: 7px;
    background-color: #d0192f;
    border-radius: 50%;
    margin: 0 0.2rem 0 0.8rem;
}

.matter-client-card__achievement {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}
