      :root {
  /* colors */
  --primary-color: #dfdfe2;
  --secondary-color: #ffffff;
  --foreground-color: black;
  --highlight-color: white;

  /* font sizes */
  --root-font-size: 12px;
  font-size: var(--root-font-size);

  /* font-families */
  --font-headline: "Roboto Mono", monospace;
  --font-family: "Lato", sans-serif;
}

#chimptunes *,
#chimptunes *::after,
#chimptunes *::before {
  box-sizing: border-box;
}

#chimptunes {
  background-color: var(--app-background-color);
  color: lightgray;
  font-family: var(--font-family);
}

ul {
  margin: 0;
}

#chimptunes {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.player,
.playlist {
  min-width: 190px;
  max-width: 400px;
  background-color: gray;
  border: 1px solid black;
}

.player {
  padding: 2px;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  border-bottom: none;
}

.player-content {
    margin: 0px 3px;
}


.player-console svg {
  color: black;
}

.playing > svg, #icon-muted {
  fill: white;
}

        
#controls {
 justify-content: center;
 margin: 3px auto;
 display: flex;
}
        
.sound-wrapper{
    padding: 4px;   
    width: 100%;
    max-width: 70px;
}
        
#volume-control {
  -webkit-appearance: none;
  vertical-align: middle;
  height: 4px;
  background: #ccc;
  outline: none;
  cursor: pointer;
  width: 100%;
}
        
#volume-control::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  height: 10px;
  width: 10px;
  background: dimgray;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  box-shadow: 0 0 0 2px #444;
}

/* Firefox */
#volume-control::-moz-range-thumb {
  height: 10px;
  width: 10px;
  background: dimgray;
  border-radius: 50%;
  background: #444;
  cursor: pointer;
  position: relative;
  box-shadow: 0 0 0 2px #444;
}
    
        
        
.progress-container{
    gap: 4px;
    width: 100%; 
    display: flex;
    justify-content: center;
}
        
        
        
#progress-bar {
  -webkit-appearance: none;
  height: 7px;
  width: 63%;
  background: #ccc;
  outline: none;
  cursor: pointer;
}
        
.player-timing {
  display: flex;
} 

/* Webkit (Chrome, Safari) */
#progress-bar::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  height: 7px;
  width: 11px;
  background: dimgray;
  cursor: pointer;
  position: relative;
  box-sizing: content-box;
  outline: 2px solid #444;
}

/* Firefox */
#progress-bar::-moz-range-thumb {
  height: 7px;
  width: 11px;
  background: dimgray;
  background: #444;
  cursor: pointer;
  position: relative;
  box-sizing: content-box;
  outline: 2px solid #444;
}
               
button {
  padding: 2px;
  background: transparent;
  border-radius: 0;
  border-bottom: 2px solid #3b3b3b;
  border-right: 2px solid #3b3b3b;
  border-top: 2px solid lightgray;
  border-left: 2px solid lightgray;
  color: var(--primary-color);
  cursor: pointer;
  font-size: var(--root-font-size);
  outline-color: lawngreen;
  text-align: center;
}

#controls button:active {
  border-top: 2px solid #3b3b3b;
  border-left: 2px solid #3b3b3b;
  border-bottom: 2px solid lightgray;
  border-right: 2px solid lightgray;
}

.playlist-song {
  outline-color: lawngreen;
}

.playlist li:not(:last-child) {
    border-bottom: black solid 1px;

}

button:focus,
.playlist-song:focus {
  background-color: darkgray;
  color: var(--highlight-color);
  outline-width: 1px;
}

/* Playlist */
.playlist {
  height: 110px;
  display: flex;
  align-items: center;
  row-gap: 10px;
  overflow-y: hidden;
}

        
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: rgb(224, 224, 224);
}

::-webkit-scrollbar-thumb {
    background: rgb(200, 200, 200);
    border: 0.05em solid #eeeeee; 
}

::-webkit-scrollbar-thumb:hover {
    background: rgb(180, 180, 180);
}

::-webkit-scrollbar-thumb:active {
    background: rgb(117, 117, 117);
}
  


#playlist-songs {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
overflow-y: scroll;
  justify-content: start;
  list-style: none;
  padding-left:0px;
  margin: 0 auto;
  
}
    
[aria-current="true"] {
  background-color: darkgray;
}

[aria-current="true"] .playlist-song-title {
  color: white;
}

.playlist-song-info {
  width: 100%;
  height: 100%;
  max-height: 2.6em;
  vertical-align: top;
  overflow-y: hidden;
  display: flex;
  justify-content: space-between;
  overflow: hidden;
  flex-direction: row;
  column-gap: 6px;
  font-family: var(--font-family);
  border: none;
  
}
    

#player-song-title {
}


.playlist-song-title, #playerName { 
  max-width:190px;
  font-size: 0.85rem;
  text-align: left;
}


.playlist-song-duration {
  font-size: 0.725rem;
  margin: 0em;
  min-width:26px;
  font-family: var(--font-headline);
}
        
        
.scroll-container {
      overflow: hidden;
      position: relative;
      height: 1.8em;
      background-color:black;
      margin: 2px 0px;
      color: lawngreen;
      padding: 1px;
      width: 100%;
}

.scroll-text {
  display: inline-block;
  position: absolute;
  white-space: nowrap;
  padding-left: 100%;
  animation: scroll-left 12s linear infinite;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
        
@media (max-width: 700px) {


  
}