.user-profile {
	display: flex;
	align-items: center;
	padding: 10px;
}

.fa-building {
	margin-left: 13px;
	align-content: center;
	font-size: 20px;
}

.user-name-container {
	margin-left: 10px;
	overflow-x: auto;
	/* Enable horizontal scrolling */
	white-space: nowrap;
	/* Prevent the text from wrapping */
	max-width: 150px;
	/* Maximum width of the container */
	position: relative;
	-ms-overflow-style: none;
	scrollbar-width: none;
}

.user-name-container::-webkit-scrollbar {
	display: none;
}

.sidebar-collapse .user-name-container {
	display: none;
	/* Collapse the container width */
}

.sidebar-collapse .fa-building {
	margin-left: 13px;
	align-content: center;
	/* Collapse the container width */
}

.main-sidebar:hover .user-name-container {
	display: inline;
}



