/* financial-health-check.css
   Tool-only styles for tools/financial-health-check.html
   Scoped so main site header/footer from main.css remain consistent.
*/

.tool-page .container {
  max-width: 1200px;
  margin: auto;
  padding: 10px 0 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
}

.tool-page .box {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.tool-page h2 { margin-top: 0; }

.tool-page label {
  font-weight: bold;
  display: block;
  margin-top: 14px;
}

.tool-page input {
  width: 100%;
  padding: 12px;
  font-size: 1em;
  margin-top: 4px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.tool-page .note {
  font-size: 0.9em;
  color: #555;
  margin-top: 12px;
}

.tool-page .result {
  margin-top: 20px;
  padding: 15px;
  border-radius: 8px;
  font-weight: bold;
}

.tool-page .ok { background: #e6f4ea; color: #256029; }
.tool-page .tight { background: #fff4e5; color: #8a5a00; }
.tool-page .stress { background: #fdecea; color: #8a1f17; }

.tool-page .btn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 18px;
  background: #0f4c75;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
  border: none;
}

@media (max-width: 900px) {
  .tool-page .container { grid-template-columns: 1fr; }
}
