body {
  background-color: #222;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  overflow: hidden;
  cursor: pointer;
  font-family: Arial, sans-serif;
}

#menu-container {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 20px;
  border-radius: 10px;
  z-index: 10;
}

#spider-menu {
  display: flex;
  flex-direction: column;
}

.menu-section {
  margin-bottom: 15px;
}

.menu-section label {
  display: block;
  margin-bottom: 5px;
}

#leg-color-inputs {
  display: flex;
  gap: 10px;
}

#spider-container {
  position: relative;
  width: 300px;
  height: 300px;
}

#spider-container svg {
  cursor: pointer;
}

.spider-leg {
  cursor: grab;
}

.spider-leg:active {
  cursor: grabbing;
}

#accessory-select {
  margin-right: 10px;
}

#add-accessory-btn {
  background-color: #444;
  color: white;
  border: none;
  padding: 5px 10px;
  border-radius: 5px;
  cursor: pointer;
}

#add-accessory-btn:hover {
  background-color: #555;
}