/* (A) MATERIAL ICONS */
.material-icons {
  font-size: 28px;
  color: #efff6a;
}

/* (B) WRAPPER */
#aWrap2 {
  font-family: arial, sans-serif;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  box-sizing: border-box;
  max-width: 500px;
  padding: 0;
  border-radius: 10px;
  background: black;
  margin-right: auto;
  margin-left: auto;
  max-height: 600px;
  overflow: hidden;
}

/* CONTROLS BAR */
#aControls2 {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 10px;
  background: black;
  position: sticky;
  top: 0;
  z-index: 10;
}

/* (C) PLAY/PAUSE BUTTON */
#aPlay2 {
  padding: 0;
  margin: 0;
  background: 0;
  border: 0;
  cursor: pointer;
}

/* (D) TIME */
#aCron2 {
  font-size: 14px;
  color: #cbcbcb;
  margin: 0 10px;
}

/* (E) RANGE SLIDERS */
/* (E1) HIDE DEFAULT */
#aWrap2 input[type="range"] {
  box-sizing: border-box;
  appearance: none;
  border: none;
  outline: none;
  box-shadow: none;
  width: 150px;
  padding: 0;
  margin: 0;
  background: 0;
}

#aWrap2 input[type="range"]::-webkit-slider-thumb {
  appearance: none;
}

/* (E2) CUSTOM SLIDER TRACK */
#aWrap2 input[type=range]::-webkit-slider-runnable-track {
  background: #626262;
}

#aWrap2 input[type=range]::-moz-range-track {
  background: #626262;
}

/* (E3) CUSTOM SLIDER BUTTON */
#aWrap2 input[type=range]::-webkit-slider-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 0;
  background: #fff;
}

#aWrap2 input[type=range]::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 0;
  background: #fff;
}

/* (F) VOLUME */
#aVolumeWrap2 {
  display: flex;
  align-items: center;
}

#aVolIco2 {
  margin: 0 10px;
  cursor: pointer;
}

/* RESPONSIVE (incl. Volume controls on second line) */
@media (max-width: 500px) {
  #aVolumeWrap2 {
    flex-basis: 100%;
    margin-top: -10px;
  }

  #aVolume2 {
    margin-left: 67px !important;
  }

  #aList2 {
    font-size: 12px !important;
  }

  .aRow2 {
    padding: 10px 0 !important;
  }
}

/* (G) PLAYLIST */
#aList2 {
  width: 100% !important;
  padding: 20px !important;
  margin: 0 !important;
  color: #9c9c9c !important;
  background: #0d0d0d !important;
  font-size: 14px;
  /* font-size: 14px !important; */
  text-align: left !important;
  max-height: 500px;
  overflow-y: auto;
}

.aRow2 {
  cursor: pointer;
  padding: 4px 0;
  display: flex;
  flex-direction: column;
}

.aRow2.now {
  color: #fea;
}

.aSongTitle2 {
  flex: 1;
  cursor: pointer;
  display: inline-block;
}

.aSongHeader2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* border: solid 1px #222 !important;
  padding-left: 5px;
  border-radius: 5px; */
}

.aLyricsToggle2 {
  cursor: pointer;
  font-size: 16px;
  opacity: 0.7;
  padding: 4px 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.2s ease;
}

.aLyricsToggle2:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.2);
}

.aLyricsToggle2.active {
  background: rgba(254, 238, 170, 0.3);
  opacity: 1;
}

.aLyrics2 {
  margin-top: 10px;
  padding: 10px;
  background: #1a1a1a;
  border-radius: 10px;
  font-size: 12px;
  line-height: 1.4;
  color: #ccc;
}