body {
  font-family: Arial, sans-serif;
  background-color: #f5f5f5;
  margin: 0;
  padding: 20px;
}

.container {
  width: 1000px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1 {
  color: #333333;
  text-align: center;
}

.parameters-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.parameter {
  flex-basis: calc(25% - 10px);
  display: flex;
  flex-direction: column;
}

label {
  margin-bottom: 5px;
}

.disabled {
  opacity: 0.5;
  pointer-events: none;
}

input[type='range'] {
  cursor: pointer;
}

/* Container für die Buttons */
.form-buttons {
  display: flex;
  justify-content: center; /* Zentriert die Buttons horizontal */
  gap: 20px; /* Setzt einen Abstand von 20px zwischen den Buttons */
  margin-top: 20px; /* Optional: Abstand nach oben */
}

/* Stile für die Buttons */
#searchButton,
#randomButton,
#pickButton {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  background-color: #007bff;
  color: white;
  cursor: pointer;
  transition: background-color 0.3s;
}

#searchButton:hover,
#randomButton:hover,
#pickButton:hover {
  background-color: #0056b3;
}

#results {
  margin-top: 20px;
}

input[type='checkbox'] {
  margin-right: 10px;
  cursor: pointer;
}
