body {
  background-color: #3d3a3a;
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100vh;
  margin: 0;
}

/* Style the title */
.title {
  margin: 20px 0;
  color: #fff;
  font-size: 2em;
  text-align: center;
}

/* Keep the existing styles for the container */
.player-container {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  width: 350px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  text-align: center;
  transition: all 0.3s ease;
}

h2 {
  margin: 10px 0;
}

/* Controls Buttons Style */
.controls button {
  margin: 5px;
  padding: 8px 12px;
  border: none;
  border-radius: 5px;
  background-color: #3498db;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.2s;
}
.controls button:hover {
  background-color: #2980b9;
}

/* Download Button Style */
.download-btn {
  padding: 10px 20px;
  background-color: #28a745;
  border: none;
  border-radius: 5px;
  color: #fff;
  font-size: 1em;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
}
.download-btn:hover {
  background-color: #19692c;
  transform: scale(1.05);
}

/* Volume Control */
.volume-control {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#volume-slider {
  margin-left: 10px;
  width: 150px;
}