* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.songlist h1 {
  color: white;
}

body {
  background-color: aliceblue;
  font-family: 'Varela Round', sans-serif;
}

/* Navbar */
nav {
  font-family: 'Ubuntu', sans-serif;
  background-color: black;
  color: aliceblue;
  height: 65px;
}
nav ul {
  display: flex;
  align-items: center;
  list-style-type: none;
  padding: 0 20px;
}
nav ul li {
  padding: 10px 15px;
  cursor: pointer;
  white-space: nowrap;
}
nav ul li.searchNav {
  margin-left: auto;
}
#searchInput {
  padding: 8px 18px;
  border-radius: 25px;
  border: none;
  font-size: 15px;
  outline: none;
  width: 250px;        /* ⬅️ Slightly wider */
  height: 38px;        /* ⬆️ Slightly taller */
  margin-right: 20px;  /* ⬅️ Pushes it a little to the left */
}



/* Container */
.container {
  min-height: 72vh;
  width: 70%;
  margin: 20px auto;
  padding: 30px;
  background-color: black;
  border-radius: 12px;
  background-image: url('images/logo.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Song List */
.songItemContainer {
  margin-top: 20px;
}
.songItem {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: white;
  color: black;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 20px;
}
.songItem img {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  margin-right: 15px;
}

/* Bottom Player */
.bottom {
  position: sticky;
  bottom: 0;
  background-color: black;
  color: white;
  padding: 10px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#myProgressBar {
  width: 80%;
  height: 6px;
  cursor: pointer;
  margin-bottom: 10px;
}

/* Volume Control */
.volume-control {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
}
#volumeSlider {
  width: 150px;
  height: 5px;
  cursor: pointer;
}

/* Controls */
.icons {
  margin-top: 10px;
}
.icons i {
  color: white;
  margin: 0 15px;
  cursor: pointer;
}
.icons i:hover {
  color: #1db954;
}

/* Song Info */
.songInfo {
  margin-top: 10px;
  display: flex;
  align-items: center;
}
.songInfo img {
  width: 40px;
  margin-right: 10px;
  opacity: 0;
  transition: opacity 0.4s;
}
