
    .player {
      background: #fff;
      color: #000;
      display: flex;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0,0,0,0.3);
      height: 125px;
    }

   .player .cover {
      width: 125px;
      min-height: 125px;
      background: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .player .cover img {
      width:100%;
      height:100%;
      max-height: 125px;
      object-fit: cover;
    }

      .player .details {
      flex: 1;
      padding: 10px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

      .player .title {
      font-size: 0.85rem !important;
      margin-bottom: 10px;
    }

     .player  .artist {
      font-size: 12px;
      color: #555;
      margin-bottom: 10px;
    }

    /* Progress bar */
     .player  .progress {
      position: relative;
      height: 4px;
      background: #ddd;
      border-radius: 2px;
      cursor: pointer;
    }

      .player .progress-filled {
      height: 100%;
      background: #e83c5e;
      width: 0%;
      border-radius: 2px;
    }

     .player  .tooltip {
      position: absolute;
      top: -22px;
      transform: translateX(-50%);
      background: #000;
      color: #fff;
      padding: 2px 6px;
      border-radius: 4px;
      font-size: 10px;
      display: none;
    }

     .player  .time {
      display: flex;
      justify-content: space-between;
      font-size: 11px;
      color: #666;
      margin: 5px 0;
    }

     .player .controls {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: 8px;
    }

     .player  .controls button {
      background: none;
      border: none;
      cursor: pointer;
      padding: 0;
    }

    /* Volume popover */
     .player  .volume-container {
    }

     .player  .volume-slider {
    position: absolute;
    top: 50%;
    left: 44%;
    transform: translate(-50%, -50%) rotate(-90deg);
    -webkit-appearance: auto;
    width: 100px;
    height: 5px;
    outline: none;
    cursor: grab;
    padding: 0 0;
    }

     .player  .volume-container:hover .volume-slider {
      display: block;
    }    
    
    .player  .volume-container:hover .slider_area {
      display: flex;
    }

      .player .controls svg {
        width: 20px;
        height: 20px;
    }

     .player  .controls svg path {
        fill:#000;
    }

    .controls .set {
    display: flex;
    gap: 20px;
}


.player_area {
      width: 410px;
      position: relative;
      padding: 10px;
      margin-top: 15px;
}



.volume-slider {
  accent-color: black;
  border: solid 1px #ddd;
  -webkit-appearance: none !important;
  border-radius: 8px;
}

.slider_area {
    display: flex;
    height: calc( 100% - 20px);
    position: absolute;
    width: 22px;
    background: #fff;
    border-radius: 8px;
    margin-top: 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    right: -30px;
    display: none;
    align-items: center;
    justify-content: center;
}