


/*  all-users/all-users.css  */



.all-users-page {
    padding: 60px 10px 20px 10px;
    }
.users-list {
    margin: auto;
    display: flex;
    justify-items: start;
    max-width: 900px;
    flex-wrap: wrap;
    justify-content: center;
    }
.page-title {
    margin: 0px auto 10px;
    text-align: center;
    font-weight: 100;
    }
.sort-button {
    font-size: 12px;
    color: #ffffff;
    border: none;
    cursor: pointer;
    background: green;
    transition: 0.5s;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    }
.user-list-name { 
    font-size: 14px;
    FONT-WEIGHT: 600;
    }
.user-list-id { font-size: 10px; color: #8f99a7;}
.user-list-info { 
    font-size: 12px;
    background: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    cursor: pointer;
    overflow: hidden;
    width: 64px;
    }
.user-card {
    background: #f4f8ff;
    margin: 2px;
    padding: 0px;
    width: 145px;
    border-radius: 999px;
    display: flex;
    flex-direction: column;
    position: relative;
    }
.user-card-left {
    display: flex;
    gap: 7px;
    align-items: center;
    }
.user-card-right {
    display: none;
    }
.user-avatar {
    display: flex;
    align-items: center;
    }
.user-card-avatar-wrap {
    width: 56px;
    height: 56px;
    position: relative;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    cursor: pointer;
    }
.user-card-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
    }
.user-avatar img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    }
.user-card-initial-letter {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 22px;
    color: #fff;
    }
.user-card-info {
    min-width: 0;
    }
.user-card-name {
    font-weight: 700;
    margin-bottom: 2px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    }
.user-card-id {
    opacity: 0.7;
    font-size: 12px;
    margin-bottom: 6px;
    }
.user-card-about {
    opacity: 0.9;
    font-size: 14px;
    line-height: 1.3;
    }
.user-card-actions {
    display: flex;
    align-items: center;
    }
.user-card-call-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    border-radius: 999px;
    padding: 10px 14px;
    font-weight: 600;
    cursor: pointer;
    background: var(--accent, #3bb77e);
    color: #fff;
    transition: transform .06s ease, opacity .2s ease;
    }
.user-card-call-btn:hover {
    transform: translateY(-1px);
    }
.user-card-call-btn:disabled {
    opacity: .6;
    cursor: default;
    }
.user-card-call-btn img {
    width: 18px;
    height: 18px;
    display: block;
    }
.show-more-wrap {
    width: max-content;
    margin: 30px auto;
    }
.show-more-button {
    width: max-content;
    background: #d4dce9;
    border: 0;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 17px;
    cursor: pointer;
    }
.show-more-button:hover {
    background: #ced5e1;
    }
.sort-button {
    background: #72c162;
    }
.sort-button:hover {
    transition: 0s;
    box-shadow: none;
    background: #1fb800;
    }
.initial-letter-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    color: #fff;
    font-size: 20px;
    background: #99a1ad;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    }


/* индикаторы online offline  */
/* индикатор статуса поверх аватара */
.avatar-wrap { position: relative; display: inline-block; }
.status-dot {
    position: absolute;
    left: 120px;
    bottom: 13px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ef4444;
    border: 2px solid #f4f8ff;
}
.status-dot.online { 
    background: #22c55e;
    border: 1px solid #00ff5e;
    width: 13px;
    height: 13px;
    left: 120px;
    bottom: 12px;
}

