/* 🌿 Калькулятор идеального веса — зелёная фитнес-тема */
.calculator-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 30px;
  font-family: 'Segoe UI', sans-serif;
}

.calc-block {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
}

.calc-block h1 {
  color: #1b5e20;
}

.calc-block .calc-intro {
  color: #607d68;
}

.calc-block label {
  display: block;
  margin-top: 20px;
  font-weight: 600;
  color: #1b5e20;
}

.calc-block input,
.calc-block select {
  width: 100%;
  padding: 10px;
  margin-top: 8px;
  font-size: 16px;
  border: 1px solid #a5d6a7;
  border-radius: 6px;
  background-color: #f6fbf6;
  color: #333;
}

.calc-block input:focus,
.calc-block select:focus {
  outline: 2px solid #66bb6a;
  border-color: #66bb6a;
}

.field-hint {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: #78997d;
}

.calc-block button {
  margin-top: 25px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #2e7d32, #1b5e20);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(46, 125, 50, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.calc-block button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 16px rgba(46, 125, 50, 0.45);
  background: linear-gradient(135deg, #1b5e20, #0d3310);
}

.result-block {
  background: linear-gradient(180deg, #e8f5e9, #f3fbf3);
  padding: 25px;
  border-top: 5px solid #2e7d32;
  border-radius: 12px;
  flex: 1;
  min-width: 280px;
}

.result-block h2 {
  margin-top: 0;
  color: #1b5e20;
}

.result-output p {
  margin: 12px 0;
  font-size: 17px;
  color: #222;
}

.result-output .result-main {
  font-size: 22px;
  font-weight: 700;
  color: #1b5e20;
}

.result-output .result-sub {
  font-size: 15px;
  color: #607d68;
}

.result-output ul.formula-list {
  margin: 8px 0 12px;
  padding-left: 20px;
  color: #333;
}

.result-output ul.formula-list li {
  margin: 4px 0;
}

.calculator-description {
  max-width: 800px;
  margin: 50px auto;
  padding: 30px;
  background-color: #ecf6ec;
  border-top: 5px solid #2e7d32;
  border-radius: 12px;
  line-height: 1.6;
  font-size: 16px;
  color: #263238;
}

.calculator-description h2,
.calculator-description h3 {
  color: #1b5e20;
  margin-top: 20px;
}
