
#player, #playTimeD, #playButtons { display: flex; }

/* (PART B) WRAPPER & LAYOUT */
#player {
  flex-wrap: wrap;
  width:300 px;
  padding: 5px; border-radius: 10px;
	 background-image: url('../img/player.jpg');
     background-position: center center;
     background-repeat: no-repeat; 
     -webkit-background-size: cover;
     -moz-background-size: cover;
     -o-background-size: cover;
     background-size: cover;		 
}

/* (PART C) CURRENT SONG IMAGE */
#playImg {
  width: 100px; height: 100px; aspect-ratio: 1/1;
  object-fit: cover; border-radius: 10px;
  float: left;
}

/* (PART D) CURRENT SONG NAME & CONTROLS */
/* (D1) WRAPPER & SHARED */
#playControls { text-align: center; margin-left: 0px; width: 200px; padding-left: 10px; }
#player input[type="range"] {
  padding: 0; margin: 0;
  border: none; outline: none; box-shadow: none;
  accent-color: #ff4b4b;
}

/* (D2) SONG NAME */
#playName {
  font-size: 20px; margin-bottom: 10px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* (D3) SONG TIME */
#playTimeN, #playTimeT { width: 50%; font-size: 14px; }
#playTimeR { width: 100%; }
#playTimeT { text-align: right; }

/* (D5) CONTROL BUTTONS */
#playButtons { margin-top: 10px; align-items: center; }
#playLast, #playTog, #playNext, #playVolI, #playVidz { cursor: pointer; }
#playLast, #playTog, #playNext, #playVidz { width:20px; font-size: 16px; flex-grow: 1; }
#playVolI { width:20px; font-size: 16px; margin-right: 5px; }
#playVolR { flex-shrink: 1; max-width: 40px; }

/* (PART E) PLAY LIST */
#playList { display:none; width: 300px; margin-top: 20px; }
#playList div { padding: 10px; cursor: pointer; }
#playList div.current { font-weight: 700; color: #ff4b4b; }
