.controls {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
}

.algo-options {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* border: 1px solid purple; */
  background: rgb(10,28,50);
  border-radius: 4px;
  padding: 10px;
  border: 1px solid #fff;
  margin: 0;
}

.algo-options-explanation {
  width: 350px;
  margin-top: 10px;
}

.params-title {
  font-size: 20px;
  padding-bottom: 10px;
}

.param-item-container {
  width: 350px;
  /* border: 1px solid blue; */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px;
}

.param-item-label {
  display: flex;
}

.param-input {
  width: 180px;
  display: flex;
}

.param-value-container {
  width: 45px;
  border: 1px solid #fff;
  border-radius: 4px;
  background: rgb(3, 3, 49);
  padding: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 5px;
}

.param-value {
  font-size: 12px;
}

.control-buttons-container {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.control-buttons-container button {
  font-size: 16px;
  border-radius: 4px;
}

.switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 5px;
}

.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 12px;
  width: 12px;
  /* left: 4px; */
  top: -3px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(28px);
  -ms-transform: translateX(28px);
  transform: translateX(28px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 10px;
}

.slider.round:before {
  border-radius: 50%;
}

.question-circle {
  /* fill: #fff; */
  width: 16px;
  height: 16px;
  margin-left: 5px;
}

.question-circle:hover {
  cursor: pointer;
}

.param-input > input:hover {
  cursor: pointer;
}