/* PLAYER */

body {
  padding-bottom: 120px;
}

.audio-player {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #6c757d;
  color: #f0f0f0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 20px;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.5s ease;
}

.audio-player.show {
  transform: translateY(0);
}

.controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
}

.audio-player button {
  background: none;
  color: inherit;
  border: none;
  padding: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 5px;
}

.audio-player button svg {
  width: 24px;
  height: 24px;
  fill: #f0f0f0;
}

.audio-player button:hover svg {
  fill: #BCC1C6;
}

.audio-player .title {
  flex: 1;
  text-align: left;
  font-size: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-left: 20px;
}

.progress-bar-container {
  width: 100%;
  height: 8px;
  background: #f0f0f0;
  margin: 8px 0;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
}

.progress-bar {
  width: 0%;
  height: 100%;
  background: #BCC1C6;
  border-radius: 4px;
  transition: width 0.1s linear;
}

a {
  color: #0066cc;
}

a:hover {
  text-decoration: underline;
}

