/* Voice Connected panel */
.voice-panel {
  background: var(--background-secondary-alt);
  flex-shrink: 0;
}

.voice-status-bar {
  display: flex;
  align-items: center;
  padding: 8px 12px 4px;
  gap: 8px;
}

.voice-status-icon {
  font-size: 20px;
  color: var(--status-positive);
  flex-shrink: 0;
}

.voice-status-info {
  flex: 1;
  min-width: 0;
}

.voice-status-title {
  font-size: 14px;
  font-weight: var(--font-weight-semibold);
  color: var(--status-positive);
  line-height: 18px;
}

.voice-status-channel {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.voice-status-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.voice-status-actions i {
  font-size: 18px;
  color: var(--interactive-normal);
  cursor: pointer;
}

.voice-status-actions i:hover {
  color: var(--interactive-hover);
}

/* Voice action buttons row */
.voice-action-buttons {
  display: flex;
  gap: 6px;
  padding: 6px 8px 8px;
}

.voice-action-btn {
  flex: 1;
  height: 36px;
  border-radius: var(--radius-xs);
  background: var(--background-modifier-accent);
  color: var(--interactive-normal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.voice-action-btn:hover {
  background: var(--background-modifier-selected);
  color: var(--interactive-hover);
}

/* User area at bottom of sidebar */
.user-area {
  height: 52px;
  background: var(--background-secondary-alt);
  display: flex;
  align-items: center;
  padding: 0 8px;
  gap: 8px;
  flex-shrink: 0;
  border-top: 1px solid rgba(0,0,0,0.2);
}

.user-avatar {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-round);
  background: var(--brand-500);
  flex-shrink: 0;
  position: relative;
  overflow: visible;
}

.user-avatar-clip {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-round);
  overflow: hidden;
  background-size: 135%;
  background-position: center;
}

.user-avatar img {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-round);
  object-fit: cover;
}

.user-avatar-status {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 14px;
  height: 14px;
  border-radius: var(--radius-round);
  background: var(--status-positive);
  border: 3px solid var(--background-secondary-alt);
}

.user-info {
  flex: 1;
  min-width: 0;
}

.user-name {
  font-size: 14px;
  font-weight: var(--font-weight-semibold);
  color: var(--header-primary);
  line-height: 18px;
}

.user-status {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 14px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.user-status-voice-icon {
  color: var(--status-positive);
  font-size: 10px;
}

.user-controls {
  display: flex;
  gap: 2px;
}

.user-control-btn {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-xs);
  background: transparent;
  color: var(--interactive-normal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.user-control-btn:hover {
  background: var(--background-modifier-hover);
  color: var(--interactive-hover);
}

.user-control-group {
  display: flex;
  align-items: center;
  gap: 0;
}

.user-control-chevron {
  width: 16px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--interactive-normal);
  font-size: 10px;
  cursor: pointer;
}

.user-control-chevron:hover {
  color: var(--interactive-hover);
}
