body {
  font-family: sans-serif;
  display: flex;
  flex-direction: row;
  padding: 20px;
  gap: 20px;
}

#controls {
  display: flex;
  flex-direction: column;
  width: 300px;
  position: relative;
}

textarea, input, select {
  margin-bottom: 10px;
  padding: 8px;
  font-size: 16px;
}

canvas {
  border: 1px solid #ccc;
}

#spotify-search {
  position: relative;
  z-index: 2;
}

#search-results {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 200px;
  overflow-y: auto;
  position: absolute;
  top: 36px;
  background: white;
  border: 1px solid #ccc;
  width: calc(100% - 24px);
  z-index: 3;
}

#search-results li {
  padding: 5px 10px;
  cursor: pointer;
}

#search-results li:hover {
  background: #eee;
}