.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(12px);
  z-index: -1;
  transition: background-image 0.5s ease-in-out;
}

body {
  position: relative;
  background-color: #0d0d0d;
  color: #ffffff;
  font-family: 'Segoe UI', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.search-box {
  display: flex;
  gap: 10px;
  zoom: 1.2;
  
}

.search-box input {
  padding: 10px;
  border-radius: 8px;
  border: none;
  width: 200px;
  font-size: 14px;
  background: #2a2a2a;
  color: white;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);

}

.search-box button {
  padding: 10px 16px;
  border-radius: 8px;
  background: #4299e1;
  color: white;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.search-box button:hover {
  background: #3182ce;
}

.album-cover {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.player {
  background: #1a1a1a;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  width: 320px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.song-title {
  font-size: 20px;
  font-weight: bold;
}

.artist {
  font-size: 14px;
  color: #a0aec0;
}

.controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.btn {
  background: #2d2d2d;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.3s;
}

.btn:hover {
  background: #3d3d3d;
}

.btn svg {
  pointer-events: none;
}

.progress-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
}

#progressBar {
  flex: 1;
  height: 4px;
  background: #4a5568;
  border-radius: 2px;
  outline: none;
  -webkit-appearance: none;
}

#progressBar::-webkit-slider-thumb {
  appearance: none;
  width: 0;
  height: 0;
  background: transparent;
  border: none;
}

#progressBar::-moz-range-thumb {
  width: 0;
  height: 0;
  background: transparent;
  border: none;
}

#progressBar::-ms-thumb {
  width: 0;
  height: 0;
  background: transparent;
  border: none;
}

.time {
  font-size: 12px;
  color: #a0aec0;
  width: 35px;
  text-align: center;
}
