/* Channel icon (# or speaker) */
.channel-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--channels-default);
  font-size: 18px;
  margin-right: 6px;
}

.channel-item.active .channel-icon {
  color: var(--interactive-active);
}

.channel-item:hover .channel-icon {
  color: var(--interactive-hover);
}

/* Channel emoji (between icon and name) */
.channel-emoji {
  font-size: 15px;
  flex-shrink: 0;
  margin-right: 2px;
  line-height: 1;
}

/* Channel name text */
.channel-name {
  font-size: 15px;
  font-weight: var(--font-weight-medium);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 20px;
}

.channel-item.active .channel-name {
  font-weight: var(--font-weight-semibold);
  color: var(--interactive-active);
}

/* Voice channel connected users */
.voice-user {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 2px 8px 2px 44px;
  font-size: 13px;
  cursor: pointer;
  border-radius: var(--radius-xs);
  height: 28px;
}

.voice-user:hover {
  background: var(--background-modifier-hover);
}

.voice-user-avatar {
  width: 20px;
  height: 20px;
  border-radius: var(--radius-round);
  flex-shrink: 0;
}

.voice-user-name {
  font-size: 13px;
  font-weight: var(--font-weight-medium);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
