body {
    font-family: Arial, sans-serif;
    
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

.player {
    position: relative;
    z-index: 1;
    margin: 50px auto;
    max-width: 600px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    background: black;
    border-radius: 10px;
  }
  
  .player:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    box-shadow: inset 0 0 2000px rgba(255, 255, 255, .5);
    filter: blur(10px);
    z-index: -1;
    background: black;
  }
  

.pod-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.podcast-image {
    width: 125px;
    height: 125px;
    object-fit: cover;
    margin-right: 1rem;
}

.header-text {
    flex-grow: 1;
    color: white;
}

.logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.player-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-top: 1rem;
    color: white;
  }

  .control-buttons {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    font-size: 1.5rem;
    
  }

  .player-controls i:hover {
    cursor: pointer;
  }

  .episode-dropdown:hover {
    cursor: pointer;
  }
  
  
  
  .progress-bar {
    flex-grow: 1;
    cursor: pointer;
    margin: 0 10px;
  }
  
  .progress-container {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    margin-top: 1rem;
    color: white;
  }
  

.episode-dropdown {
    width: 100%;
    margin-top: 1rem;
}

.progress-bar.seeking::-webkit-slider-thumb {
    box-shadow: 0 0 0 10px rgba(0, 0, 0, 0.2);
  }

  .loader {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    z-index: 99;
    border-radius: 10px;
    
    justify-content: center;
    align-items: center;
  }
  
  .loader i {
    font-size: 3rem;
    
    
  }

  select.episode-dropdown {
    font-family: Arial, sans-serif;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    width: 100%;
    height: 40px;
    background-color: #fff;
    
    background-repeat: no-repeat;
    background-position: right center;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }
  
  
  select.episode-dropdown option {
    font-family: Arial, sans-serif;
    font-size: 14px;
    background-color: #fff;
    color: #333;
    padding: 5px 10px;
  }
  
  select.episode-dropdown option:hover {
    background-color: #f0f0f0;
    color: #000;
  }
  
  select.episode-dropdown::after {
    content: "\f0d7";
    font-family: "Font Awesome 6 Solid";
    font-weight: 900;
    font-size: 14px;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #333;
  }

  .dropdown-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
  }
  
  .dropdown-caret {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #333;
    pointer-events: none;
  }
  
  select.episode-dropdown {
    padding-right: 30px; /* Add extra padding to accommodate the icon */
  }

  .duration-time {
    position: absolute;
    right: 0;
    white-space: nowrap;
    margin-left: 10px;
  }

  .volume-container {
    position: absolute;
    top: 0; /* Adjust this value to move the volume icon up or down. */
    right: 0; /* Adjust this value to move the volume icon left or right. */
    color: white;
    
  }
  
  .volume-slider-container {
    transform: rotate(270deg); /* Add this line */
    transform-origin: center; 
    display: none;
    position: absolute;
    bottom: 50px; /* Adjust this value to move the volume slider up or down. */
    left: -300%;
    
    background-color: rgba(0, 0, 0, 0.8);
    padding: 10px;
    border-radius: 5px;
  }
  
  
  .volume-slider {
    width: 100%;
    cursor: pointer;
  }
  
  
  
  
  
  
  
  
  
