/* Wellness Assessment Tool UI */
.wat-form, .wat-result{
  max-width: 920px;
  margin: 24px auto;
  padding: 24px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  font-family: "Prompt", "Segoe UI", Tahoma, sans-serif;
  color: #222;
}
.wat-form h3{ margin: 6px 0 6px; font-size: 20px; color: #0f172a; }
.wat-desc{ color:#475569; margin-bottom:10px; }

.wat-fieldrow{
  margin: 14px 0;
  padding: 14px;
  background: #f8fafc;
  border: 1px solid #e5e9f0;
  border-radius: 12px;
}
.wat-fieldrow label{ display:block; font-weight:600; margin-bottom:8px; }

.wat-options{ display:flex; flex-direction:column; gap:6px; }
.wat-options-inline{ display:flex; gap:10px; flex-wrap:wrap; }
.wat-option{
  display:flex; align-items:center; gap:8px;
  padding:8px 10px;
  background:#fff; border:1px solid #e2e8f0; border-radius:10px;
  transition: all .2s ease-in-out; cursor:pointer;
}
.wat-option:hover{ background:#f0f7ff; border-color:#0073aa; }

.wat-grid2{
  display:grid; grid-template-columns: repeat( auto-fit, minmax(210px,1fr) );
  gap:12px;
}
.wat-fieldrow input[type="number"], .wat-fieldrow select{
  width: 100%; max-width: 280px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cfd8e3;
  background: #fff;
  font-size: 15px;
}

.wat-btn{
  display:inline-block; padding:12px 22px;
  background: linear-gradient(90deg, #0073aa, #0ea5e9);
  color:#fff!important; border:none; border-radius:28px; font-weight:700;
  cursor:pointer; text-decoration:none; transition:transform .06s ease; margin-top:12px;
}
.wat-btn:hover{ transform: translateY(-1px); }

/* Results */
.wat-overall{
  padding:14px 18px; border-radius:14px; border-left:10px solid #22c55e;
  background:#f0fdf4; margin: 8px 0 16px;
}
.wat-overall .line1{ font-size:18px; font-weight:800; }
.wat-overall .line2{ color:#475569; }

.wat-overall.ov-excellent{ border-left-color:#22c55e; background:#f0fdf4; }
.wat-overall.ov-fair{ border-left-color:#f59e0b; background:#fffbeb; }
.wat-overall.ov-poor{ border-left-color:#ef4444; background:#fef2f2; }

.wat-grid{
  display:grid; grid-template-columns: repeat( auto-fit, minmax(200px, 1fr) );
  gap:12px; margin-bottom: 10px;
}
.wat-card{
  background:#f8fafc; border:1px solid #e5e9f0; border-radius:14px;
  padding:14px; text-align:center;
}
.wat-card h4{ margin:0 0 6px; font-size:16px; color:#0f172a; }
.wat-card .metric{ font-size:26px; font-weight:800; }
.wat-card .sub{ color:#475569; margin-top:6px; }
.hp-low{ color:#b91c1c; } .hp-mid{ color:#b45309; } .hp-high{ color:#15803d; }

.wat-tips{
  margin-top: 10px; padding: 12px 14px;
  background:#f1f5f9; border:1px solid #e2e8f0; border-radius:12px;
}
.wat-tips h4{ margin:0 0 8px; }
.wat-tips ul{ margin:0; padding-left: 18px; }

.wat-note, .wat-disclaimer{ font-size:12px; color:#64748b; margin-top:10px; }

@media (max-width:520px){
  .wat-overall{ flex-direction:column; }
}