.user-select-container .user-list-container{
  height: 100%;
  overflow: scroll;
}
.user-select-container .border-bottom{
  border-bottom: 1px solid rgb(201, 201, 201);
  display: flex;
  flex-direction: row;
  align-items: center;
  
}

.user-select-container  .label-container{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
.user-select-container .user-input-placeholder{
  font-weight: bold;
  font-size: 14px;
}


.profile-label-container{
  display:flex;
  width: 100%;
  margin-left: 25px;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  text-overflow: ellipsis;
}

.profile-label-container .profile-item {
  display: flex;
  width: 100%;
}

.profile-label-container .profile-item .profile-label{
  flex-shrink: 0;
  flex-basis: 100px;
  flex-grow: 1;
  max-width: 160px;
  padding: 4px 0;
  margin-right: 20px;
}

.profile-label-container .profile-item  .profile-detail {
  flex-grow: 1;
  flex-basis: 140px;
  padding: 4px 0;
  overflow-wrap: break-word;
  word-break: break-all;
}
#no-selected-user-container{
  display: flex;
  flex-direction: column;
  margin-top: 30px;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
#no-selected-user-container i{
  margin-bottom:10px ;
}

.user-selected-container{
  border-top: 2px solid #f1f1f1;
  margin-top: 25px;
  padding-top: 25px;
}