/* styles.css — minimalist enterprise theme */
body {
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  margin: 40px auto;
  max-width: 720px;
  background: #f9fafb;
  color: #111827;
  line-height: 1.5;
}

h2 {
  color: #0a5eb0;
  margin-bottom: 12px;
}

a {
  color: #0a5eb0;
  text-decoration: none;
}
a:hover { text-decoration: underline; }

fieldset {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #fff;
  padding: 12px 16px;
  margin-top: 16px;
}

label { display: block; margin: 4px 0; }

input, select, button {
  font: inherit;
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
}

button {
  background: #0a5eb0;
  color: white;
  font-weight: 600;
  border: none;
  cursor: pointer;
  margin-top: 14px;
}
button:hover { background: #0c6cd4; }

#loadOrgs, #build {
  padding: 10px 14px;
  border-radius: 10px;
  border: none;
}

#orgs {
  width: 100%;
  margin-top: 6px;
}

input[type="date"] {
  width: 160px;
}

input[type="text"] {
  width: 220px;
}

legend {
  font-weight: 600;
  color: #0a5eb0;
}
