/* developers-halpas-production/account-navigation-final.css */
#sidebar .account-profile {
  box-sizing: border-box;
  grid-template-columns: 36px minmax(0, 1fr);
}

#sidebar .account-profile > span:nth-child(2) {
  display: grid;
  width: auto;
  height: auto;
  min-width: 0;
  background: transparent;
  color: #fff;
  place-items: initial;
  font: inherit;
}

#sidebar .account-profile #account-name,
#sidebar .account-profile #account-role {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sidebar-collapsed #sidebar .account-profile {
  grid-template-columns: 36px;
}
