/* Custom Audio Player */
.custom-audio-player {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.player-controls {
  margin-bottom: 10px;
}

.player-controls .btn {
  margin: 0 5px;
}

.progress-bar {
  width: 100%;
  height: 10px;
  background: #e0e0e0;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  margin: 10px 0;
}

.progress-bar-fill {
  height: 100%;
  width: 0%;
  background: #007bff;
  position: absolute;
  top: 0;
  left: 0;
}

#seek-bar {
  width: 100%;
  margin: 10px 0;
}

#album-art {
  max-width: 100%;
  height: auto;
}

.navbar-nav .nav-item.active .nav-link {
  font-weight: bold;
}
