body {
  font-family: 'Segoe UI', Arial, sans-serif;
  margin: 40px;
  background: #FEF6E4;
  color: #333;
}

.container {
  max-width: 700px;
  margin: 0 auto;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.disclaimer {
  grid-column: 1 / -1;   /* span both columns */
  text-align: center;
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
  font-style: italic;
}

.logo {
  max-width: 200px;
  display: block;
  margin: 0 auto 20px auto;
}

h1 {
  color: #2c3e50;
  text-align: center;
  margin-bottom: 20px;
}

/* Form Layout */
form {
  display: grid;
  grid-template-columns: 150px 1fr auto;
  grid-gap: 10px 15px;
  align-items: center;
}

label {
  font-weight: 600;
  text-align: right;
}

input {
  padding: 6px 8px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

input:focus {
  border-color: #3498db;
  outline: none;
}

/* Button Styling */
button {
  grid-column: 1 / -1;
  justify-self: center;
  background: #3498db;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background: #2980b9;
}

/* Results Section */
.results {
  display: none;
  margin-top: 20px;
  padding: 15px;
  background: #ecf0f1;
  border-radius: 8px;
  font-size: 16px;
  line-height: 1.5;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Chart Section */
.chart-container {
  display: none;
  margin-top: 25px;
  max-width: 500px;
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  margin-left: auto;
  margin-right: auto;
}

/* Back link styled like landing page buttons */
.back-link {
  margin: 2rem;
  text-align: center;
}

.back-link a {
  display: inline-block;
  padding: 10px 20px;
  background: #3498db;
  border: 1px solid #ddd;
  border-radius: 5px;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  transition: background 0.3s;
}

.back-link a:hover {
  background: #3498db;
}
