body {
    margin: 0;
    padding: 20px;
    font-family: system-ui, sans-serif;
    background: #f4f5f7;
    color: #222;
}

h1 {
    margin-top: 10px;
    font-size: 26px;
    text-align: center;
}

.subheading {
    text-align: center;
    margin-bottom: 25px;
    color: #666;
}

.form-card,
.result-card {
    background: white;
    padding: 20px;
    max-width: 480px;
    margin: 20px auto;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
}

label {
    display: block;
    margin-top: 15px;
    margin-bottom: 5px;
    font-weight: 600;
}

input,
select,
textarea {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 15px;
    box-sizing: border-box;
}

textarea {
    min-height: 80px;
}

button {
    width: 100%;
    padding: 12px;
    background: #1e4bd1;
    color: white;
    border-radius: 6px;
    border: none;
    font-size: 17px;
    cursor: pointer;
    margin-top: 20px;
}

button:hover {
    background: #1639a6;
}

.hidden {
    display: none;
}

.verdict-pill {
    padding: 10px 15px;
    border-radius: 6px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 15px;
}

.verdict-good {
    background: #d7f5dd;
    color: #1a7f32;
}

.verdict-warning {
    background: #fff2cc;
    color: #8a6d1d;
}

.verdict-bad {
    background: #f7d6d6;
    color: #a11919;
}

.result-banner {
  padding: 12px;
  margin-bottom: 18px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1.05rem;
}

.result-banner.green {
  background: #d9f4d9;
  color: #155724;
}

.result-banner.amber {
  background: #fff4cd;
  color: #8a6d3b;
}

.result-banner.red {
  background: #f8d7da;
  color: #842029;
}