body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #202020;
  overflow: hidden;
  height: 100vh;
  width: 100vw;
}

#visualizer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: block;
  z-index: 0;
}

#controls {
  position: absolute;
  bottom: 20px;
  right: 0px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  background: rgba(0, 0, 0, 0.6);
  padding: 10px;
  border-radius: 20px;
  backdrop-filter: blur(5px);
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  
}

.search-section,
.upload-section {
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
  justify-content: flex-end;
}

/* Input + dropdown section */
.search-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.upload-section {
  margin-top: 10px;
}

/* Inputs & buttons */
#jamendoSearch,
#jamendoResults,
#jamendoSearchBtn,
#jamendoPlayBtn,
#stopBtn,
#audioFile {
  padding: 10px 14px;
  font-size: 14px;
  border-radius: 8px;
  border: none;
  outline: none;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  transition: 0.2s ease;
}

#jamendoSearchBtn,
#jamendoPlayBtn,
#stopBtn {
  cursor: pointer;
  background-color: #ff5c5c;
  color: white;
  font-weight: bold;
}

#jamendoPlayBtn:hover {
  background-color: #44c767;
}

#stopBtn:hover {
  background-color: #ff2e2e;
}

#jamendoSearchBtn:hover {
  background-color: #5555ff;
}

#jamendoResults {
  background-color: rgba(0, 0, 0, 0.5);
}
#fireStatus {
  font-size: 14px;
  color: #ff9800;
  background: rgba(0,0,0,0.3);
  padding: 6px 12px;
  border-radius: 8px;
  margin-top: 6px;
}
#menuToggle {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 3;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  font-size: 22px;
  padding: 10px 16px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s ease;
}

#menuToggle:hover {
  background: rgba(0, 0, 0, 0.9);
}

#controls.hidden {
  display: none;
}
