.cap-audio-player {
  background: #e0e0e0;
  border-radius: 12px;
  padding: 15px;
  max-width: 500px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.cap-controls button {
  background: #d6d6d6;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cap-controls button:hover {
  background: #c0c0c0;
}

.cap-progress {
  flex: 1;
  height: 6px;
  background: #bfbfbf;
  border-radius: 3px;
  cursor: pointer;
  position: relative;
}

.cap-progress-filled {
  height: 100%;
  background: #6d6d6d;
  border-radius: 3px;
  width: 0%;
}

.cap-time {
  font-size: 12px;
  color: #333;
  min-width: 40px;
  text-align: right;
}

.cap-volume {
  display: flex;
  align-items: center;
  gap: 5px;
}

.cap-volume-slider {
  width: 80px;
}
