.audio-player {
  background: var(--bs-light-text-emphasis);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 400px;
}

.play-pause-btn {
  background: #3b82f6;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
}

.play-pause-btn:hover {
  background: #000000;
}

.progress-container {
  flex-grow: 1;
  position: relative;
  height: 8px;
  background: #e5e7eb;
  cursor: pointer;
  border-radius: 4px;
}

.progress-bar {
  background: #3b82f6;
  height: 100%;
  width: 0;
  border-radius: 4px;
}

.time-display {
  font-size: 14px;
  color: #ffffff;
  min-width: 60px;
  text-align: right;
}

.volume-control {
  display: flex;
  align-items: center;
  gap: 5px;
}

.volume-slider {
  width: 100px;
}

.mybutt {
  background: #FFA929;
}

.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #0d6efd;
  --bs-btn-border-color: #0d6efd;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #0b5ed7;
  --bs-btn-hover-border-color: #0a58ca;
  --bs-btn-focus-shadow-rgb: 49,132,253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #F90101;
  --bs-btn-active-border-color: #0a53be;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #0d6efd;
  --bs-btn-disabled-border-color: #0d6efd;
}

.playerpos {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

