body {
  color: #ffffff;
  background-color: #080808;
}
.theme-pink { color: rgb(255, 86, 189); }
.theme-orange { color: rgb(245, 114, 17); }

.templates {
  display: none;
}

p {
  font-family: 'Cutive Mono', monospace;
  font-size: 18px;
}

.shine {
  animation: pulse;
  animation-duration: 0.5s;
  animation-iteration-count: infinite;
}

@keyframes pulse {
    0% {
        color: rgb(0, 123, 255);
    }
    50% {
        color: rgb(0, 86, 179);
    }
    100% {
        color: rgb(0, 123, 255);
    }
}

.music-credit {
  font-size: 75%;
}

/* Episode Player Styles */
.transcript-content {
  font-family: 'Cutive Mono', monospace;
  font-size: 14px;
  line-height: 1.3;
  max-height: 400px;
  overflow-y: auto;
  padding-right: 10px;
}

/* WebVTT transcript styling */
.vtt-transcript {
  font-family: 'Cutive Mono', monospace;
  overflow-y: auto;
  max-height: 400px;
  padding-right: 5px;
}

.transcript-segment {
  margin-bottom: 4px;
  padding: 4px 6px;
  border-radius: 2px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  line-height: 1.3;
}

.transcript-segment:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.transcript-segment.active {
  background-color: rgba(255, 86, 189, 0.2);
  border-left: 3px solid rgb(255, 86, 189);
}

.transcript-segment .speaker {
  display: inline;
  font-weight: bold;
  color: rgb(245, 114, 17);
  margin-right: 6px;
}

.transcript-segment .text {
  display: inline;
}

.episode-title {
  color: rgb(255, 86, 189);
  word-break: break-word;
}

.player-container {
  padding: 15px;
  border-radius: 8px;
}

audio {
  width: 100%;
}

.speed-control {
  color: white;
  background-color: #212529;
  border-color: #444;
}

/* Transcript download links */
.transcript-links {
  font-size: 14px;
}

.transcript-links .dropdown-menu {
  background-color: #212529;
  border: 1px solid #444;
  font-size: 14px;
}

.transcript-links .dropdown-item {
  color: #fff;
}

.transcript-links .dropdown-item:hover,
.transcript-links .dropdown-item:focus {
  background-color: #2c3135;
  color: #fff;
}

.download-dropdown .dropdown-toggle {
  font-size: 12px;
  padding: 0.2rem 0.5rem;
}

.download-dropdown .dropdown-menu {
  background-color: #212529;
  border: 1px solid #444;
}

.download-dropdown .dropdown-item {
  color: #fff;
  font-size: 12px;
}

.download-dropdown .dropdown-item:hover,
.download-dropdown .dropdown-item:focus {
  background-color: #2c3135;
  color: #fff;
}
