body{
    background-color: white;
    color: black;
    font-family: 'Roboto', sans-serif;
  }

 

  #myProgress {
    width: 100%;
     background-color: #d9d9f2; 
    cursor: pointer;
    border-radius: 10px;
  }
  
  #myBar {
    width: 0%;
    height: 5px;
    background-color: black;
    border-radius: 10px;
  }
  
  
  .btn-action{
    cursor: pointer;
    padding-top: 10px;
    width: 30px;
  }
  
  .btn-ctn, .infos-ctn{
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .infos-ctn{
  padding-top: 20px;
  }
  
  .btn-ctn > div {
   padding: 5px;
   margin-top: 8px;
   margin-bottom: 8px;
  }
  
  .infos-ctn > div {
   margin-bottom: 8px;
   color: black;
  }
  
  .first-btn{
    margin-left: 3px;
  }
  
  .duration{
    margin-left: 10px;
  }
  
  .title{
    margin-left: 10px;
    width: 210px;
    text-align: center;
    font-size: 20px;
  }
  
  .player-ctn{
    border-radius: 15px;
    width: 100%;
    padding: 0px;
    background-color: white;
    margin:auto;
    margin-top: 40px;
  }
  
  .playlist-track-ctn{
    display: flex;
    background-color: white;
    margin-top: 3px;
    border-radius: 20px;
    cursor: pointer;
  }

  .playlist-track-ctn > div{
    margin:10px;
  }
  .playlist-info-track{
    width: 80%;
  }
  .playlist-info-track,.playlist-duration{
    padding-top: 7px;
    padding-bottom: 7px;
    color: black;
    font-size: 14px;
    pointer-events: none;
  }
  .playlist-ctn{
     padding-bottom: 20px;
  }
  .active-track{
    background: gray;
    color: #ffc266 
   
    
  }
  
  .active-track > .playlist-info-track,.active-track >.playlist-duration,.active-track > .playlist-btn-play{
    color: #ffc266 
  }
  
  
  .playlist-btn-play{
    pointer-events: none;
    padding-top: 5px;
    padding-bottom: 5px;
  }
  .fas{
    color: #ffc266;
    font-size: 20px;
  }

  #container {
    width: 100%;
    aspect-ratio: 4/4;
    padding: 10px 0;
    margin: auto;
    border: none;
   
    overflow-x: hidden;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
  }
  
  /* Hide scrollbar for Chrome, Safari and Opera */
  #container::-webkit-scrollbar {
      display: none;
  }
      
      .dropbtn {
    background-color: lightgray;
    color: black;
    padding: 3px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    width: 100%;
    height: 10%;
    border-radius: 0px;
    align-items: center;
  
   
    
  }
  
  
  
  .dropdown {
 
  
    width: 100%;
  }
  
  .dropdown-content {
    display: none;
   
    background-color: #f1f1f1;
    width: 100%;
    overflow: auto;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    
  }
  
  .dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
  }
  
  .dropdown a:hover {background-color: #ddd;}
  
  .show {display: block;}

  