/* Front page (Vision: data-boundary warning plus connect instructions). Explicit background so the
   dark-navy body text keeps its contrast ratio when the browser or OS is in dark mode (WCAG 2.2 AA
   1.4.3). */
body {
  font-family: system-ui, Segoe UI, sans-serif;
  max-width: 720px;
  margin: 3rem auto;
  padding: 0 1rem;
  color: #1a202c;
  background: #fff;
  line-height: 1.6;
}

h1 {
  color: #0f6b3f;
}

code {
  background: #f1f5f9;
  padding: .15rem .4rem;
  border-radius: 4px;
}

.warn {
  background: #fff8e1;
  border-left: 4px solid #f59e0b;
  padding: .75rem 1rem;
  border-radius: 4px;
}

.ok {
  color: #0f6b3f;
  font-weight: 600;
}

table {
  border-collapse: collapse;
}

td {
  padding: .25rem .75rem .25rem 0;
}

/* Connect form (ADT-719: consent gate before the OAuth redirect). */
label {
  display: block;
  font-weight: 600;
  margin-top: 1rem;
}

input[type=text] {
  width: 100%;
  box-sizing: border-box;
  padding: .5rem;
  margin-top: .25rem;
  border: 1px solid #94a3b8;
  border-radius: 4px;
  font-size: 1rem;
}

.toggle-row {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  font-weight: 400;
  margin-top: 1rem;
}

.toggle-row label {
  margin-top: 0;
  font-weight: 400;
}

button {
  margin-top: 1rem;
  padding: .5rem 1.25rem;
  font-size: 1rem;
  background: #0f6b3f;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

