/* Members List */
.members-list {
    width: 240px;
    background-color: #2f3136;
    border-left: 1px solid #202225;
    display: flex;
    flex-direction: column;
}

.members-header {
    padding: 16px;
    border-bottom: 1px solid #3c3c41;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.members-title {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
}

.members-count {
    font-size: 14px;
    color: #8e9297;
}

.members-section {
    flex: 1;
    padding: 16px 8px;
    overflow-y: auto;
}

.members-category {
    margin-bottom: 24px;
}

.members-list-container {
    margin-top: 8px;
}

.member-item {
    display: flex;
    align-items: center;
    padding: 6px 8px;
    margin: 1px 0;
    border-radius: 4px;
    transition: background-color 0.15s ease;
    cursor: pointer;
}

.member-item:hover {
    background-color: #3c3c41;
}

.member-avatar {
    width: 32px;
    height: 32px;
    margin-right: 12px;
    position: relative;
}

.member-avatar img,
.member-avatar video {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.status-indicator {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 3px solid #2f3136;
    background-color: #43b581;
}

.member-username {
    font-size: 14px;
    font-weight: 500;
    color: #dcddde;
}

