*, *:before, *:after {
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    /* background-color: #f5f5f5; */
}

.container {
    max-width: 400px;
    margin: 200px auto 0 auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}



#volumeControl {
  color: rgb(255, 26, 26);
}

/* audio {
    width: 49%; 
    margin-top: 10px;
  } */

 /* audio::-webkit-media-controls-panel {
  background-color: #f0f0f0;
  color: #333;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
} */
  
  /* Style the play button */
  audio::-webkit-media-controls-play-button {
    display: none; 
  }
  
  /* Style the audio progress bar */
  audio::-webkit-media-controls-current-time-display,
  audio::-webkit-media-controls-time-remaining-display {
    font-size: 14px;
    display: none; 
  }
  
  /* Style the audio volume controls */
  audio::-webkit-media-controls-volume-slider {
    width: 140px;
  }
  


  /* audio::-webkit-media-controls-volume-slider::-webkit-slider-thumb {
    background-color: #ff0000;
    border: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
  } */
  /* audio::-webkit-media-controls-mute-button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    font-size: 18px;
    color: #d20606;
    transition: color 0.3s ease;
  } */
  
  /* audio::-webkit-media-controls-mute-button:hover {
    color: #ff0000;
  } */
  
  
  /* Style the audio full screen button */
  audio::-webkit-media-controls-fullscreen-button {
    display: none; /* Hide the full screen button */
  }
  
  /* Style the audio track display */
  audio::-webkit-media-controls-timeline {
    height: 0px; /* Adjust the height of the progress bar */
    margin-top: 5px;
  }
  
