html, body {
  margin: 0;
  padding: 0;
  background-color: #080d19;
  width: 100%;
  height: 100%;
  color: white;
  overflow: hidden;
  user-select: none;
}

a {
  color: white;
}

#plot {
  width: 65%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

canvas {
  border-radius: 10px;
}

#right-bar {
  width: 30%;
  height: 100%;
  background-color: #414651;
  position: absolute;
  top: 0;
  right: 0;
  border-left: solid #545d6f;
  overflow: auto;
}
#right-bar-container {
  margin: 20px;
}
#right-bar::-webkit-scrollbar {
  width: 10px;
}
#right-bar::-webkit-scrollbar-track {
  background-color: #292b31;
}
#right-bar::-webkit-scrollbar-thumb {
  background-color: #575859;
  border-radius: 5px;
}

button {
  border: 2px solid #222124;
  height: 25px;
  border-radius: 5px;
  padding-left: 5px;
  padding-right: 5px;
  color: black;
  cursor: pointer;
}

.controller-left {
  width: 48%;
  position: absolute;
}
.controller-right {
  width: 48%;
  float: right;
}

.slider-container {
  height: 50px;
  align-items: center;
}
input[type="range"] {
  appearance: none;
  width: 100%;
  height: 6px;
  background: transparent;
}
input[type="range"]::-webkit-slider-runnable-track {
  background: rgb(139, 106, 230);
  height: 6px;
  cursor: pointer;
  border-radius: 5px;
}
input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  background-color: #414651;
  border-radius: 10px;
  border: 2px solid rgb(255, 253, 222);
  height: 16px;
  width: 16px;
  cursor: pointer;
  margin-top: -5px;
}


details {
  margin: 10px;
}
summary {
  cursor: pointer;
}
.conductor-controller {
  margin: 10px;
}
select {
  margin-bottom: 10px;
}