
.user-info {
  display: flex;
  min-width: 130px;
  gap: 20px;
  justify-content: start;
  align-items: center;
  height: 100%;
  /* cursor: pointer; */
}

.user-divider {
  background-color: #e9eef1;
  width: 0;
  height: 30px;
  border: 1px solid #e9eef1;
  margin: auto 0;
}

.user-profile {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: Manrope, sans-serif;
  justify-content: start;
}

.user-avatar {
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  width: 36px;
  border-radius: 50%;
  align-self: stretch;
  margin: auto 0;
}

.user-details {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: auto 0;
}

.user-name {
  color: #101d23;
  font-size: 16px;
  font-weight: 700;
}

.user-role-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  white-space: nowrap;
  line-height: 1.6;
  justify-content: start;
}

@media (max-width: 991px) {
  .user-role-wrapper {
      white-space: initial;
  }
}

.user-role {
  color: #395360;
  font-weight: 500;
  align-self: stretch;
  margin: auto 0;
}

.role-divider {
  background-color: #e9eef1;
  align-self: stretch;
  width: 0;
  height: 10px;
  margin: auto 0;
  border: 1px solid #e9eef1;
}

.change-role {
  color: #17726d;
  font-weight: 500;
  align-self: stretch;
  margin: auto 0;
}

.change-role:hover {
  color: #101d23;
  cursor: pointer;
}