/* ===== Voice Controls ===== */

#voice-controls {
  background-color: var(--bg-primary);
  padding: 8px 12px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#voice-status {
  display: flex;
  align-items: center;
  gap: 8px;
}

#voice-status-icon {
  font-size: 18px;
}

#voice-status-text {
  display: flex;
  flex-direction: column;
}

#voice-connected-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--success);
}

#voice-channel-label {
  font-size: 12px;
  color: var(--text-muted);
}

#voice-buttons {
  display: flex;
  gap: 6px;
}

.voice-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--bg-tertiary);
  border: none;
  color: var(--text-secondary);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.15s, color 0.15s;
}

.voice-btn:hover {
  background-color: var(--bg-active);
  color: var(--text-primary);
}

.voice-btn.muted {
  background-color: var(--danger);
  color: white;
}

.disconnect-btn:hover {
  background-color: var(--danger);
  color: white;
}
