body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  /* Layout */
  background-color: #f0f0f0; 
  height: 100vh;
}
.bg-image{
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -1;  
}
h1{
    text-align: center;
    margin: 25px;
}

.music-player {
  width: 300px;
  padding: 20px;
  background-color: #fff;
  border: 5px solid black;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Song list buttons */
.song-options {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.song-options li  {
  width: 250px;
  padding: 10px;
  border: 2px solid #000;
  border-radius: 6px;
  background-color: #fff;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.2s, transform 0.1s;
  margin: 5px;
}

.song-options li:hover {
  background-color: #f2f2f2;
  transform: scale(1.02);
}

/* Player controls (icons) */
.play-section {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-top: 10px;
}

.play-section button {
  background: none;
  border: none;
  font-size: 32px;
  cursor: pointer;
  color: black;
  transition: color 0.2s, transform 0.1s;
}

.play-section button:hover {
  transform: scale(1.1);
}

/* Input range (progress/volume) */
input[type="range"] {
  width: 100%;
  margin: 15px 0;
  height: 6px;
  background: #ccc;
  border-radius: 4px;
  outline: none;
  transition: background 0.2s;
}

