.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
  background-color: rgba(254, 254, 254, 0.8);
  margin: 10% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

#noteButtonsContainer button.selected {
  background-color: #007bff;
  color: #fff;
}

#noteButtonsContainer button.selected:disabled {
  background-color: #ccc;
  color: #999;
}


.octave-container {
  margin-bottom: 20px;
}

.octave-label {
  font-weight: bold;
  margin-bottom: 5px;
}

.note-buttons {
  display: flex;
}

.note-buttons button {
  margin-right: 5px;
  margin-bottom: 5px;
}

.space {
  margin-left: 30px;
}

.simple-vs-advanced {
  display: flex;
  justify-content: space-between;
}

.left-section,
.right-section {
  flex-grow: 1;
}

.instrument-icon {
  width: 100px;
  height: 100px;
  transition: transform 0.3s ease;
}

.instrument-icon:hover {
  cursor: pointer;
  transform: scale(1.1);
}
