
:root {
  --bg: #dfe4ec;
  --page: #ffffff;
  --text: #1b2430;
  --muted: #5f6b7a;
  --primary: #003b72;
  --accent: #f5b21d;
}
* { box-sizing: border-box; }
body {
  font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  background: radial-gradient(circle at top, #eef1f5 0%, #d0d7e2 80%);
  color: var(--text);
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.topbar {
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.4rem 1.1rem;
  border-bottom: 3px solid var(--accent);
  box-shadow: 0 1px 3px rgba(0,0,0,0.12);
}
.brand { font-weight: 700; letter-spacing: 0.03em; }
.nav { display: flex; gap: 0.4rem; }
.nav a {
  padding: 0.25rem 0.8rem;
  border-radius: 999px;
  font-size: 0.88rem;
  text-decoration: none;
  color: #e5edf8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}
.nav a.active,
.nav a:hover { background: rgba(255,255,255,0.18); }
main.container {
  max-width: 1150px;
  width: 100%;
  margin: 1.4rem auto 2.2rem;
  padding: 0 1.1rem;
  flex: 1 0 auto;
}
.hero {
  background: linear-gradient(135deg, #ffffff 0%, #dbe5f0 80%);
  border-radius: 16px;
  padding: 1.3rem 1.6rem;
  margin-bottom: 1.2rem;
  box-shadow: 0 6px 16px rgba(0,0,0,0.04);
}
.card {
  background: var(--page);
  border-radius: 14px;
  padding: 1rem 1.1rem;
  margin-bottom: 1rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}
input, select, button, textarea {
  font-family: inherit;
  font-size: 0.82rem;
}
input, select, textarea {
  width: 100%;
  padding: 0.35rem 0.45rem;
  border: 1px solid #d1d7e0;
  border-radius: 6px;
}
button {
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 0.45rem 0.8rem;
  cursor: pointer;
  font-weight: 600;
}
button.btn-secondary {
  background: #edf2f7;
  color: #1b2430;
}
footer {
  background: #0b1724;
  color: #b9c2cc;
  text-align: center;
  padding: 0.8rem;
  font-size: 0.78rem;
  flex: 0 0 auto;
}


/* NYSFireTools header logo */



/* NYSFireTools header logo */
.brand-logo {
  display: inline-block;
  height: auto;
  max-height: 24px;
  width: auto;
  margin-right: 8px;
  vertical-align: middle;
}
