body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.title {
  font-size: 24px;
  margin-top: 20px;
}

.field-container {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.label {
  display: block;
  margin-right: 10px;
  font-weight: bold;
  color: #666;
}

.input-field,
.select-field {
  display: flex;
  align-items: center;
}

.input-field input[type="number"],
.select-field select {
  padding: 10px;
  border-radius: 4px;
  border: 1px solid #ccc;
}

button {
  display: block;
  width: 100%;
  padding: 10px;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #0056b3;
}

.result {
  margin-top: 20px;
  font-weight: bold;
  text-align: center;
  color: #333;
}

.suggestions {
  margin-top: 10px;
  text-align: center;
  color: #666;
}
