/*
 * Web app sidebar user component styling
 * TODO: Write super docs for this
 */
.sidebar-user-container {
  padding: 2px;
  margin: 2px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 10px;
  border-radius: 5px;  
}
.sidebar-user-avatar {
  display: flex;
  justify-content: center;
  align-items: center;
}

.avatar-svg svg {
  width: 32px;
  height: 32px;
}

.sidebar-user-name {
  display: flex;
  gap: 5px;
}

.sidebar-user-name {
  margin: 0;
}

.sidebar-user-email {
  margin: 0;
  color: var(--border-darker);
}

.sidebar-user-name, .sidebar-user-email {
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  max-width: 150px; 
}

