@charset "utf-8";
/* CSS Document */

 	  
 /* Stjärna i nowPlaying-raden */
.now-playing.starred::before {
  content: "★ ";
  color: gold;
  font-size: 1.2em;
  margin-right: 5px;
}
	  
    section {
      padding: 40px 20px;
    }
    .divider {
      height: 4px;
      background-color: #4caf50;
      width: 70px;
      margin: 20px auto;
    }
    
    a {
      color: #4caf50;
      text-decoration: none;
    }
    a:hover {
      text-decoration: underline;
    }
  
    a:link, a:visited, a:focus {
            color: white;
            text-decoration: none;
            font-size: 18px;
        }
   a:hover {
            color:#ccc;
            text-decoration: none;
            font-size: 18px;
        }


    
    img.side-img {
      width: 100%;
      height: auto;
      display: block;
      margin-bottom: 20px;
    }
	  
	  
   hml, body {
      height: 100%;
      margin: 0;
      padding: 0;
     scroll-behavior: smooth;
}	  
  .playlist li {
	  background: #302323;
	  color: #ddd;
      margin-bottom: 5px;
      padding: 10px;
      border-radius: 4px;
      display: flex;
      justify-content: space-between;
      cursor: pointer;
    }
    .playlist li:hover {
      background-color: #3c2c2c;
    }
    .playlist li.active {
      background-color: #4caf50;
      color: #000;
    }
 
 .playlist .title {
     text-align: left;
     display: inline-block;
     width: 100%;
}  
	  
    .star {
      color: gold;
      margin-left: 8px;
    }
    .now-playing {
      font-size: 1.2em;
      text-align: center;
      margin: 20px 0;
    }
    .side-img {
      width: 100%;
      height: auto;
	  cursor: pointer;	
      margin-bottom: 20px;
  }
	  
 footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  text-align: center;
  padding: 12px;
  background-color: rgba(0,0,0,1.0);
  z-index: 999;
}
	  
  #searchInput::placeholder {
  color: #ccc; /* sök */
  opacity: 1;  /* gör texten helt tydlig */
}
	  
#albumSelector {
  text-align: center;
  background-color: #130d0c;
  border: none;
  cursor: pointer;
  color: white;
  font-size: 26px;
  padding: 0px 0;	
  text-align-last: center;
  max-width: 445px; 
  margin: auto;
}


	  








 


