.chatgpt-audio-wrapper {
  display: flex;
  flex-direction: column;
  font-family: sans-serif;
  margin-bottom: 15px;
}

.chatgpt-audio-label {
  font-size: 14px;
  margin-bottom: 6px;
  color: #333;
}

.chatgpt-audio-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.chatgpt-audio-play-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #1e90ff;
  color: white;
  border: none;
  font-size: 18px;
  cursor: pointer;
  flex-shrink: 0;
}

.chatgpt-audio-progress-container {
  flex: 1;
  height: 8px;
  background: #f0f0f0;
  border-radius: 5px;
  position: relative;
  cursor: pointer;
}

.chatgpt-audio-progress {
  height: 100%;
  width: 0;
  background: #1e90ff;
  border-radius: 5px;
}

.chatgpt-audio-time {
  font-size: 14px;
  min-width: 45px;
  text-align: right;
}