/* Shared styles for media tabs */
.media-tabs ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: space-between;
  border-bottom: 1px solid #ccc;
}

.media-tabs ul:has(li.tab-apple.active) {
  border-bottom-color: #FF3E3E;
}

.media-tabs ul:has(li.tab-soundcloud.active) {
  border-bottom-color: #ff5500;
}

.media-tabs ul:has(li.tab-spotify.active) {
  border-bottom-color: #1ed760;
}

.media-tabs ul:has(li.tab-youtube.active) {
  border-bottom-color: #FF0000;
}

.media-tabs li {
  padding: 0.75rem 4px 0.75rem 6px;
  cursor: pointer;
  background: #f8f8f8;
  border-radius: 0;
  flex: 1;
  text-align: center;
  margin: 0;
}

.media-tabs li.active {
  background: #f8f8f8;
  color: #333;
}

.media-tabs li.tab-apple.active {
  background: #FF3E3E;
  color: #fff;
}

.media-tabs li.tab-soundcloud.active {
  background: #ff5500;
  color: #fff;
}

.media-tabs li.tab-spotify.active {
  background: #1ed760;
  color: #fff;
}

.media-tabs li.tab-youtube.active {
  background: #FF0000;
  color: #fff;
}

.media-tab-content {
  display: none;
  /*padding: 3px;*/
}

.media-tab-content.active {
  display: block;
}

.media-tab-content iframe {
  width: 100%;
  height: auto;
  min-height: 360px; /* Default for YouTube, Spotify, SoundCloud */
  border: none;
  box-sizing: border-box;
  overflow-x: hidden;
}

.media-tab-content iframe.apple-music {
  min-height: 900px; /* Doubled for Apple Music */
}

@media (max-width: 768px) {
  .media-tabs ul {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .media-tab-content iframe {
    min-height: 240px; /* Adjusted for YouTube mobile */
  }

  .media-tab-content iframe.apple-music {
    min-height: 600px; /* Doubled for Apple Music mobile */
  }
}