/* Medicare IRMAA Calculator styles (dropdown-only) */
.irmaa-card {
  max-width: 920px;
  margin: 24px auto;
  padding: 22px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fff;
  color: #222;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  box-sizing: border-box;
}

.irmaa-card h2 { margin: 0 0 12px 0; font-size: 35px; }
.irmaa-card p.lead { margin: 0 0 12px 0; color:#444; font-size:17px; }

.irmaa-row { margin-bottom: 14px; }
.irmaa-row label { display:block; margin-bottom:6px; font-size:20px; color:#2b2b2b; }
.irmaa-row .inline { display:inline-block; margin-right:12px; font-size:16px; }

.irmaa-row select,
.irmaa-row input[type="number"] {
  width: 100%;
  padding: 10px;
  font-size: 17px;
  border: 1px solid #cfcfcf;
  border-radius: 6px;
  box-sizing: border-box;
}

.irmaa-card h2 {
  margin: 0 0 24px 0; /* space below heading */
  font-size: 35px;
  line-height: 1.3;
}

.irmaa-actions { display:flex; gap:10px; margin-top: 18px; }
.irmaa-card button { background: #0073aa; color: white; border: none; padding: 10px 14px; border-radius: 6px; cursor: pointer; font-size: 17px; }
.irmaa-card button.secondary { background:#e9e9e9; color:#222; }

.irmaa-result { margin-top: 16px; padding: 12px; border-radius:6px; background:#f7f9fb; border:1px solid #e6eef6; font-size:17px; display:none; }
.result-label { font-weight:600; font-size:18px; margin-bottom:8px; }
.result-block { margin-bottom:6px; }

.irmaa-error { color:#b00020; font-size:14px; margin-top:6px; display:none; }
.hint { font-size:13px; color:#666; margin-top:6px; }
@media (max-width:640px) {
  .irmaa-card { padding:12px; }
  .irmaa-card h2 { font-size:26px; }
}

.irmaa-plus {
  display: inline-block;
  padding: 0 8px; /* adjust amount for desired spacing */
}

