.pldate {
  background-color: transparent;
  color: #FFFFFF;
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  text-align: left;
  width: 100%;
}

.playlist {
  position: relative;
  display: inline-block;
  width: 100%;
}

.playlist-content {
  display: none;
  position: absolute;
  background-color: #000000;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  width: 80%;
  margin: 0 0 0 35px;
  top: 35px;
  list-style-type: none;
}

.playlist-content li {
  padding: 5px 0 5px 10px; 
}

.playlist-content li:hover {
  background-color: #FFFF30;
  color: #000000;
}

.playlist:hover .playlist-content {
  display: block;
}

.playlist:hover .pldate {
  background-color: #FFFF30;
  color: #000000;
}