* {
    background-color: rgb(46, 46, 46);
}


.banner {
  max-width: 100%;
 border: 20px rgb(39, 36, 36);
}

#nav {
  margin-inline: auto;
  box-sizing:content-box;
  text-align: center;
}

.nav {
  border: 20px rgb(39, 36, 36);
}

.title {
  background-color: rgb(39,36,36);
}
.nav li {
  position: relative;
  border-radius: 10px;
  display: inline;
  text-align: right;
  left: -20px;

}
.nav li a {
  border-radius: 10px;
  color:rgb(218, 218, 218);
  text-decoration: none;
  font-family: monospace;
  padding: 10px;
  text-align: right;
  justify-content: center;

}

.nav li a:hover {
  background-color: rgb(218,218,218);
  color: rgb(39,36,36); 
  transition-duration: 0.5s;
}


.headers {
  font-family: system-ui;
  color: rgb(218, 218, 218);
}

.entryCards {
  max-width: fit-content;
  margin-inline: auto;
}

.bodyHeaders {
  font-weight: normal;
  font-family: monospace;
  color: rgb(218, 218, 218); 
}

.entryheaders {
  font-weight: normal;
  font-family: monospace;
  color: rgb(218,218,218);
  text-decoration: none;
  font-size: 20px;

}

.entryheaders:hover {
  text-decoration: underline;
}

.entriescards {
  width: 600px;
  height: 70px;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
  padding: 8px;
  border: 1px solid rgb(236, 235, 235);
  border-radius: 2px;
  transition: 0.3s;
}

.entriescards:hover {

  box-shadow: 0 8px 16px 0 rgba(204, 204, 204, 0.2);
  transition-duration: 0.5s;
 
}
.left {
  max-width: fit-content;
  margin-right: auto;
  padding: 8px;
}

/* SONG PAGES */


.songEntries {
  max-width: fit-content;
  margin-inline: auto;
}

.songs {
  width: 600px;
  height: 70px;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
  padding: 10px 20px;
  border: 1px solid rgb(236, 235, 235);
  border-radius: 2px;
  transition: 0.3s; 
}

/* customize look of song player */
audio {
  display: none; /* Hides the default audio controls */
}

.seekbar {
  width: 100%;
  height: 2%;
  cursor: pointer;
  -webkit-appearance: none; 
  weight: 8px; /* Thickness */
  background: #ddd; /* Track color */
  border-radius: 1px;
  outline: none;
  cursor: pointer;

  margin-top: 10px;
}

/* The draggable thumb */
.seekbar::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 5px;
  height: 5px;
  background: #ababab; /* Thumb color */
  border-radius: 1px;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}

.seekbar::-webkit-slider-thumb:hover {
  width: 15px;
  height: 15px;
  background: #ff3b3b; /* Change color on hover */
}


.controls {
  display: flex;
  flex-direction: row;
  margin-top: 15px;
}

button {
  color: white;
  border-color: transparent;

}

button:hover {
  background-color: rgb(34, 34, 34);
}

.currentTime, .duration {
  color: white;
  font-family: monospace;
  font-size: 14px;
  margin-top: 5px;
}

.title {
  max-width: fit-content;
  margin-inline: auto;

  font-family: monospace;
  color: rgb(218,218,218);


}