body {
  font-family: Arial, sans-serif;
  background-color: #a8a9a8;
  margin: 0;
  padding: 0;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  background-color: rgb(220, 221, 220);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
h1 {
  text-align: center;
  color: #333;
}
.prompt-selection-container {
  display: flex;
  justify-content: space-between; /* Adjust the space between the divs */
  margin: 20px 0; /* Adjust the top and bottom margin */
}
.prompt-selection {
  text-align: center;
  font-weight: bold;
  color: darkred;
  margin: 0 10px; /* Adjust the left and right margin for spacing */
  flex: 1; /* Allow the divs to grow equally */
  border-radius: 10px; /* Add this line to make rounded corners */
}
/* Gap between the divs */
.prompt-selection + .prompt-selection {
  margin-left: 20px; /* Space between the divs */
}
.response-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 20px 0;
}
.response-box {
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #fafafa;
}
.response-label {
  font-weight: bold;
}
select {
  padding: 10px;
  color: darkred;
  font-size: 16px;
}
