/* Shared style for the app privacy notices (/app/<app>/privacy/). */
:root { color-scheme: light dark; }
body {
  margin: 0 auto; max-width: 46rem; padding: 2rem 1.25rem 4rem;
  font: 17px/1.65 system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: #0b1b2e; background: #f9fafc;
}
h1 { font-size: 1.7rem; line-height: 1.25; margin: 0 0 .25rem; }
h2 { font-size: 1.25rem; margin: 2.2rem 0 .5rem; }
h3 { font-size: 1.05rem; margin: 1.4rem 0 .4rem; }
p, li { margin: .5rem 0; }
ul { padding-left: 1.3rem; }
.muted { color: #69758a; font-size: .95rem; }
.lead {
  border-left: 4px solid #5a42de; background: #f3f1fd;
  padding: .8rem 1rem; border-radius: 0 12px 12px 0; margin: 1.2rem 0;
}
.lang-switch { margin: 1rem 0 0; font-size: .95rem; }
a { color: #5a42de; }
hr { border: 0; border-top: 1px solid #e7ebf0; margin: 3rem 0; }
table { border-collapse: collapse; width: 100%; font-size: .95rem; }
th, td { text-align: left; padding: .45rem .6rem; border-bottom: 1px solid #e7ebf0; vertical-align: top; }
/* wide permission tables must scroll themselves, not the page */
.table-wrap { overflow-x: auto; }
code { font: .92em/1.4 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; }
@media (prefers-color-scheme: dark) {
  body { color: #f2f5f8; background: #0e151c; }
  .lead { background: #1d1936; border-left-color: #aea1f5; }
  .muted { color: #b8c2ce; }
  a { color: #aea1f5; }
  th, td, hr { border-color: #34414e; }
}
