.topbar-user {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  height: 40px;
  padding: 4px 10px 4px 4px;
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 12px;
  color: #fff;
  background: #24272b;
}

.topbar-user-avatar {
  display: grid;
  flex: 0 0 32px;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  color: #fff;
  background: #ff6b00;
  font-size: 12px;
  font-weight: 800;
}

.topbar-user-copy {
  display: grid;
  min-width: 0;
  line-height: 1.05;
}

.topbar-user-copy small {
  color: #9da2aa;
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
}

.topbar-user-copy strong {
  display: block;
  max-width: 120px;
  overflow: hidden;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 520px) {
  .topbar-user {
    gap: 6px;
    padding-right: 7px;
  }

  .topbar-user-avatar {
    flex-basis: 30px;
    width: 30px;
    height: 30px;
  }

  .topbar-user-copy small {
    display: none;
  }

  .topbar-user-copy strong {
    max-width: 72px;
    font-size: 10px;
  }
}

@media (max-width: 390px) {
  .topbar-user-copy {
    display: none;
  }

  .topbar-user {
    padding: 4px;
  }
}
