/* Podcast player styling */
/* Compact podcast player */

.podcast-player {
  width: calc(100% - 40px);
  max-width: 500px;
  margin: 12px auto 24px auto;
  padding: 10px;
  box-sizing: border-box;
  border: 1px solid #bbb;
  border-radius: 6px;
  font-family: Arial, sans-serif;
  font-size: 13px;
  background: #f7f7f7;
}

.audio-controls {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
  margin-bottom: 8px;
}

.audio-controls button {
  padding: 5px 9px;
  border: 1px solid #777;
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
  font-size: 13px;
  line-height: 1.2;
}

.audio-controls button:hover {
  background: #e8e8e8;
}

.audio-progress {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 7px;
  margin-bottom: 8px;
}

.seekBar {
  width: 100%;
}

.volume-control {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: 13px;
}

.volumeControl {
  width: 110px;
}
/* END Podcast player styling */