/* Navigation overrides for high contrast theme */
.profile {
  display: flex;
  flex-direction: row;
  color: rgba(0, 0, 0, .9);
  color: var(--text-primary-color,rgba(0, 0, 0, .9));
  padding: 10px 15px;
}

.profile .profile-avatar {
  flex-grow: 0;
  margin-right: 10px;
}

.profile .profile-avatar img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.profile .profile-text {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.profile .profile-text .profile-name {
  flex: 1 1 auto;
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: normal;
}

.profile .profile-text .profile-email {
  flex: 1 1 auto;
  font-size: 11px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: normal;
}
