@import url('https://fonts.googleapis.com/css2?family=Public+Sans:wght@400;600;700&display=swap');

:root {
  --primary: #0D4AA1;
  --secondary: #19395B;
  --accent: #A0CD80;
  --accent2: #76B843;
  --deep-green: #00453A;
  --text: #212529;
  --border: #dee2e6;
}

* { box-sizing: border-box; }

body {
  font-family: "Public Sans", system-ui, sans-serif;
  color: var(--text);
  margin: 0;
  background: #f8f9fa;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  max-width: 640px;
  width: 100%;
  margin: 0 auto;
  padding: 2rem 1rem 3rem;
  flex: 1;
}
main.center {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* header */
.site-header {
  background: #fff;
  border-bottom: 3px solid var(--primary);
  padding: 1rem 1.5rem;
}
.site-header img { height: 32px; display: block; }

/* banner */
.banner {
  background: linear-gradient(90deg, var(--deep-green), var(--secondary));
  color: #fff;
  text-align: center;
}
.banner-inner {
  max-width: 640px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}
.banner h2 { margin: 0 0 0.5rem; font-size: 1.6rem; }
.banner p { margin: 0; color: var(--accent); font-weight: 600; font-size: 1.05rem; }

/* footer */
.site-footer {
  background: var(--deep-green);
  color: #fff;
  text-align: center;
  padding: 2rem 1rem;
  margin-top: 3rem;
}
.site-footer img { height: 24px; margin-bottom: 0.5rem; }
.site-footer p { margin: 0; font-size: 0.8rem; opacity: 0.8; }

h1 { color: var(--secondary); font-size: 1.5rem; }

input, select, button {
  font-family: inherit;
  font-size: 1rem;
  padding: 0.6rem;
  margin: 0.25rem 0;
  width: 100%;
  box-sizing: border-box;
  border: 1px solid var(--border);
  border-radius: 4px;
}

button {
  cursor: pointer;
  background: var(--primary);
  color: #fff;
  border: none;
  font-weight: 600;
}
button:hover { background: var(--secondary); }

.table-wrap { overflow-x: auto; margin-top: 1rem; border-radius: 10px; }
table { width: 100%; border-collapse: collapse; background: #fff; }
th, td { border: 1px solid var(--border); padding: 0.75rem 1rem; text-align: center; font-size: 0.9rem; overflow-wrap: anywhere; }
th { background: var(--secondary); color: #fff; }
