.server-picker {
  width: 100%;
  color: var(--text);
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color .18s, background .18s;
}

.server-picker:hover {
  border-color: #39414b;
  background: #171b21;
}

.server-choice {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  color: var(--text);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 9px;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
}

.server-choice:hover,
.server-choice.active {
  background: #181d23;
  border-color: #2c333c;
}

.server-choice > span:nth-child(2) {
  min-width: 0;
  flex: 1;
}

.server-choice strong,
.server-choice small {
  display: block;
}

.server-choice strong { font-size: 11px; }
.server-choice small { margin-top: 3px; color: #69727d; font-size: 9px; }
