﻿
/* Estilo para o item da lista que está sendo reproduzido */
.playlist-container ul li.active {
    background-color: #222; /* Cor de fundo destacada */
    color: green; /* Cor do texto destacada */
}

#music-container {
  margin: 0 auto;
  max-width: 800px;
}

#slim {
  position: relative;
  bottom: 0;
  right: 1px;
  width: 300px;
  height: 40px;
  background-color: #333;   cor do player
  border: 1px solid #ccc;
  border-radius: 8px;
  
   }

.player_slim {
  display: flex;
  align-items: center;
  flex-direction: column;
  height: 100%;
  padding: 2px;
}

.player_controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  height: 100%;
}

#play_button {
  width: 16px;
  height: 16px;
  cursor: pointer;
  margin: 0 10px;

}

#play_button.playing {
  background-image: url("/imagen/pause.png");
}

#div_timer {
  display: flex;
  align-items: center;
}

#cuTimer,
#slashTimer,
#toTimer {
  font-size: 12px;
  margin: 0 5px;
}

#progress-bar {
  width: 100%;
  height: 10px;
  margin: 0 10px;
}

#progress-bar::-webkit-progress-bar {
  background-color: #eee;
  border-radius: 10px;
}

#progress-bar::-webkit-progress-value {
  background-color: #1c7;
  border-radius: 10px;
}

#div_vol {
  display: flex;
  align-items: center;
}

#vol_img {
  width: 12px;
  height: 12px;
  margin-right: 5px;
}

#change_vol {
  width: 30px;
  height: 4px;
}

#info {
  font-size: 12px;
  display: inline-block;
  max-width: 300px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: middle;
}

