/* Frontend styles for audio players */

audio {
  width: 100%;
  max-width: 100%;
  margin: 10px 0;
}

/* Custom audio player styling if needed */
audio[controls] {
  border-radius: 8px;
  background: #f5f5f5;
  padding: 5px;
}

/* Responsive audio player */
@media (max-width: 768px) {
  audio {
    width: 100%;
    height: auto;
  }
}

/* Custom Audio Player Styles for Frontend */
.custom-audio-player {
  background: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 20px;
  margin: 20px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  max-width: 100%;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.custom-audio-player .audio-title {
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 8px;
  color: #222;
  line-height: 1.3;
}

.custom-audio-player .audio-episode {
  font-size: 15px;
  color: #555;
  margin-bottom: 8px;
  font-weight: 500;
}

.custom-audio-player .audio-duration {
  font-size: 13px;
  color: #888;
  margin-bottom: 12px;
  font-weight: 400;
}

.custom-audio-player audio {
  width: 100%;
  max-width: 100%;
  margin: 15px 0;
  border-radius: 8px;
  outline: none;
}

.custom-audio-player .audio-description {
  font-size: 14px;
  color: #555;
  margin-top: 15px;
  line-height: 1.6;
  padding-top: 15px;
  border-top: 1px solid #e0e0e0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .custom-audio-player {
    padding: 15px;
    margin: 15px 0;
  }
  
  .custom-audio-player .audio-title {
    font-size: 18px;
  }
  
  .custom-audio-player .audio-episode {
    font-size: 14px;
  }
}

/* Dark mode support (optional) */
@media (prefers-color-scheme: dark) {
  .custom-audio-player {
    background: #1a1a1a;
    border-color: #333;
  }
  
  .custom-audio-player .audio-title {
    color: #f0f0f0;
  }
  
  .custom-audio-player .audio-episode {
    color: #c0c0c0;
  }
  
  .custom-audio-player .audio-duration {
    color: #888;
  }
  
  .custom-audio-player .audio-description {
    color: #c0c0c0;
    border-top-color: #333;
  }
}

