.music-player {
    background: #f4efe9;           /* rustic beige */
    border: 1px solid #c7b7a3;
    border-radius: 12px;
    padding: 10px 14px;
    max-width: 320px;
    box-shadow: 0 4px 10px rgba(0,0,0,.1);
  }
  
  .play-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: #6b4f3f;            /* rustic brown */
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: background .2s ease;
  }
  
  .play-btn:hover {
    background: #5a4033;
  }
  
  .progress-wrapper {
    flex: 1;
  }
  
  .time {
    color: #6b4f3f;
    min-width: 80px;
    /*margin-bottom: 4px;*/
  }
  
  input[type="range"] {
    width: 100%;
    appearance: none;
    height: 6px;
    border-radius: 5px;
    background: #d6c7b2;
    outline: none;
    cursor: pointer;
  }
  
  input[type="range"]::-webkit-slider-thumb {
    appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #6b4f3f;
  }
  