/* =========================================================
   VOXLY MEMBER PRESENCE UI v0.9.0
   ========================================================= */

.members-panel {
    overflow-y: auto;
}

.voxly-member-section {
    margin-bottom: 18px;
}

.voxly-member-heading {
    padding: 13px 12px 7px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--muted);
}

.voxly-member-row {
    display: flex;
    align-items: center;
    gap: 9px;

    padding: 7px 11px;
    margin: 0 5px;

    border-radius: 7px;
}

.voxly-member-row:hover {
    background: rgba(255,255,255,0.035);
}

.voxly-member-avatar {
    width: 29px;
    height: 29px;

    flex: 0 0 29px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #30384b;

    font-size: 11px;
    font-weight: 700;

    position: relative;
}

.voxly-presence-dot {
    position: absolute;

    right: -1px;
    bottom: -1px;

    width: 9px;
    height: 9px;

    border-radius: 50%;

    border: 2px solid #161a22;
}

.voxly-presence-dot.online {
    background: #39c881;
}

.voxly-presence-dot.offline {
    background: #666d7a;
}

.voxly-member-info {
    min-width: 0;
    flex: 1;
}

.voxly-member-name {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;

    font-size: 12px;
    font-weight: 600;
}

.voxly-member-role {
    margin-top: 1px;

    font-size: 9px;
    color: var(--muted);

    text-transform: capitalize;
}

.voxly-member-row.offline {
    opacity: 0.48;
}
