
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #f5f7fa;
  color: #333;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 800px;
  margin: 3em auto;
  background: #fff;
  padding: 2em;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

h1 {
  color: #1a3d7c;
  margin-top: 0;
}

form {
  margin-top: 1em;
}

input[type="text"] {
  padding: 0.5em;
  width: 70%;
  max-width: 400px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

button {
  padding: 0.5em 1em;
  margin-left: 0.5em;
  background: #1a3d7c;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

button:hover {
  background: #274e9e;
}

ul {
  list-style: none;
  padding: 0;
}

li {
  margin: 1em 0;
}

a {
  color: #1a3d7c;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

footer {
  text-align: center;
  font-size: 0.9em;
  color: #777;
  margin-top: 4em;
}

header {
  background-color: #1e3a8a;
  color: white;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2rem;
}


header h1 {
  font-size: 1.5rem;
  margin: 0;
}

.nav-left a,
.nav-right a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  margin-left: 1rem;
}

.nav-left {
  flex: 1;
}

.nav-right {
  display: flex;
  gap: 1rem;
}


.hero {
  position: relative;
  background: url('/assets/people-search-banner.png') no-repeat center center/cover;
  height: 70vh;
  padding-top: 8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-form {
  display: flex;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 0.5rem;
  max-width: 500px; /* increased from 600px */
  width: 90%;
}

.search-form input[type="text"] {
  flex: 1;
  padding: 0.75em; /* slightly taller input */
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px 0 0 4px;
  margin: 0;
}

.search-form button {
  padding: 0.75em 1.5em;
  font-size: 1rem;
  background: #1a3d7c;
  color: white;
  border: none;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  margin: 0;
}



footer {
  text-align: center;
  font-size: 0.85rem;
  color: #777;
  padding: 0.5rem 0;
  margin-top: 0rem;
}


.results-container {
  max-width: 900px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.result-card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  padding: 1.5rem;
  margin-bottom: 1rem;
  transition: transform 0.1s ease-in-out;
}

.result-card:hover {
  transform: translateY(-2px);
}

.result-card a {
  color: #1a3d7c;
  font-size: 1.1rem;
  font-weight: 500;
}

.result-card a:hover {
  text-decoration: underline;
}

.result-label {
  font-size: 0.85rem;
  background: #1a3d7c;
  color: white;
  display: inline-block;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 0.75rem;
}

