body {
  margin: 0;
  font-family: Arial, sans-serif;
}

.container {
  display: flex;
  height: 100vh;
}

/* LEFT PANEL */
.left-panel {
  width: 25%;
  padding: 20px;
  background-color: #d3d3d3;
  border-right: 1px solid #ccc;
}

.left-panel h2 {
  margin-top: 0;
}

.control-inline {
    display: flex;
    gap: 8px;
    align-items: center;
}

.control-inline select {
    flex: 1;
}

.control {
  margin-bottom: 25px;
  width: 100%;
}

label {
  display: block;
  margin-bottom: 5px;
}

/* RIGHT PANEL */
.right-panel {
  width: 75%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Visualization sections stacked vertically */
.visual-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Input in three columns */
.input-summary {
  display: flex;
  gap: 10px;
}

.input-summary > div {
  flex: 1;
}

/* Aggregation + final score in two columns */
.output-summary {
  display: flex;
  gap: 10px;
}

.output-summary > div {
  flex: 1;
}

/* Example plot styling */
.plot {
  width: 100%;
  height: 250px;
  border: 1px solid #ccc;
}

/* Optional: smaller visual sections for score */
.score-display {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #ccc;
  padding: 10px;
  /* transition: background-color 0.3s ease; */
  font-weight: bold;
}

.radio-group {
  display: flex;
  gap: 15px;           /* space between buttons */
  align-items: center; /* vertical alignment */
  flex-wrap: wrap;     /* optional: wrap if screen is small */
}