Removing directory icon on sidebar

Hello, I am using RC to converse with multiple users privately. I am trying to remove the Directory icon from the sidebar so users are unable to see each other. I am unable to find anything in the Administration area to remove this icon from the sidebar. I am assuming I need some sort of custom styling to remove this icon?

Any help would be greatly appreciated. Thanks

I was able to remove the icon with custom css:

#icon-globe {
display: none;
}

But this doesn’t remove the clickable area. Maybe somebody else can help?

Thank you so much for the response!! It was very helpful in pointing me in the right direction. After a lot of messing around with it, this seems to work. It also removes the search.

.sidebar__toolbar-button:nth-child(1) {
display: none !important;
}
.sidebar__toolbar-button:nth-child(2) {
display: none !important;
}

You are welcome. I added it also to my custom css. Thanks!