.pl_body {
    display: flex;
    justify-content: center;
    align-items: center;
    /*height: 100vh;*/
    margin: 0;
    /*background: linear-gradient(to right, #c3d5f7, #982a75);  */
    font-family: Arial, Helvetica, sans-serif;
  }
  
  .player {
    display: flex;
    flex-direction: column;
    width: 720px;
    max-width: 100%;
    /*background-color: azure;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    padding: 30px;
    margin: 10px;*/
  }
  
  .player-container {
    display: flex;
    justify-content: space-between;
    padding: 15px;
  }
  
  .player-info {
    display: flex;
    justify-content: space-between;
  }
  
  .dj-img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    margin: 0px 10px 0px 0px;
   
  }
  
  .dj-info {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
  }
  
  .info-player-options {
    display: flex;
    width: 100%;
    flex-grow: 1;
    
  }
  
  .info {
    margin-bottom: 10px;
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    width: 40%;
  }
  
  .dj-name {
    margin-bottom: 15px;
    display: flex;
    flex-wrap: wrap;
  }
  
  #lc_btn {
    display: flex;
    justify-content: center;
    width: 80%;
    padding: 10px 20px;
    /*background-color: #982a75;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.5s ease;
    text-transform: uppercase;*/
  }
  
  #lc_btn:hover {
    /*background-color: #c3d5f7;*/
  }
  
  /*.player-options {
    width: 60%;
  }*/
  
  .menu {
    display: flex;
    justify-content: space-between;
    padding: 0;
    list-style-type: none;
  }
  
  .menu-option {
    flex-basis: calc(25% - 10px);
    margin: 5px;
    box-sizing: border-box;
    text-align: center;
  }
  
  .menu-option a {
    display: block;
  }
  
  .menu-option img {
    width: 100%;
    cursor: pointer;
  }
  
  .track-info {
    display: flex;
    align-items: flex-end;
    justify-content: center;
  }
  
  .artist {
    margin-bottom: 10px;
    font-size: 16px;
  }
  
  .track {
    font-size: 14px;
  }
  
  .player-options {
    /*width: 60%;*/
    margin-bottom: 10px;
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: right;
  }
  
  .track {
    width: 100%;
  }
  
  .dj-name, .artist, .track {
    word-wrap: break-word;
  }
  
  .small-track-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    margin: 0 5px 0 0;
  }
  
  
  /*Select*/
  
  .pl_form {
    display: flex;
    justify-content: center;
  
  }
  
  .dropdownmenue {
    padding: 10px 20px;
    border-radius: 5px;
    border: 1px solid #ccc;
    background-color: #fff;
    font-size: 14px;
    color: #333;
    /*-webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;*/
    text-align: left;
  }
  
  .dropdownmenue:focus {
    outline: none;
  }
  
  audio {
    display: flex;
    margin: 0 auto;
    justify-content: center;
    width: 100%;
  }
  
  /*Animation*/
  @keyframes marquee {
    0% { text-indent: 100%; }
    100% { text-indent: -100%; }
  }
  
  .dj-name, .artist, .track0 {
    text-align: left;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    max-width: 350px;
    
  }
  .track0 {
    animation: marquee 15s linear infinite;
  }
  
  /*Adaptation for mobile*/
  @media (max-width: 600px) {
    .player {
      width: 100%;
      margin: 20px;
      padding: 10px;
    }
  
    .player-container {
      padding: 10px;
      flex-direction: column-reverse;
      align-items: center;
      overflow: auto;
    }
  
    .player-info {
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }
  
    .info-player-options {
      margin: 10px 0;
    }
  
    .dj-img {
      width: 200px;
      height: 200px;
      margin: 0 auto;
    }
  
    .dj-info {
      margin: 10px 0;
    }
  
    .dj-name {
      margin-right: 10px;
    }
  
    .info {
      display: flex;
      justify-content: space-around;
    }
  
    .artist {
      font-size: 18px;
    }
    
    .track {
      font-size: 16px;
    }
  
    .player-options, audio {
      width: 100%;
    }
  
    .player-options {
      padding-bottom: 20px;
      margin: 0 auto;
    }
  
    #lc_btn {
      font-size: 18px;
    }
  
    form {
      margin-bottom: 5px;
    }
  
    .dropdownmenue {
      padding: 10px;
      font-size: 16px;
    }
  }
  
  @media (max-width: 400px) {
    .player {
      margin: 10px;
    }
  
    .player-container {
      padding: 5px;
    }
  
    .dj-img {
      width: 150px;
      height: 150px;
      margin-bottom: 5px;
    }
  
    .small-track-img {
      width: 30px;
      height: 30px;
    }
  
    .dj-info {
      margin: 5px 0;
    }
  
    .artist {
      font-size: 18px;
    }
    
    .track {
      font-size: 16px;
    }
  
    .player-options, audio {
      width: 100%;
    }
  
    #lc_btn {
      padding: 10px 20px;
      font-size: 16px;
    }
  
    form {
      margin-bottom: 5px;
    }
  
    .dropdownmenue {
      padding: 10px;
      font-size: 18px;
    }
  }