/* Shared styling for every B8R Legal policy page.
   Kept as one file rather than duplicated <style> blocks so a change to
   the look of one document changes all of them. index.html (the account
   deletion form) keeps its own inline styles — it has form controls
   nothing else here needs. */

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  max-width: 680px;
  margin: 0 auto;
  padding: 32px 20px 80px;
  color: #1a1a1a;
  background: #f7f7f8;
}

h1 { font-size: 22px; margin-bottom: 4px; }
.subtitle { color: #666; font-size: 14px; margin-bottom: 28px; }

.card {
  background: #fff;
  border: 1px solid #e2e2e2;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 16px;
  /* Tables here have up to four columns. On a phone those columns get
     crushed to one word per line and then clipped by the card edge, so
     the card scrolls sideways instead — paired with the min-width on
     table below, which stops the squashing in the first place. */
  overflow-x: auto;
}

h2 { font-size: 16px; margin-top: 0; margin-bottom: 10px; }
h3 { font-size: 14px; margin-top: 16px; margin-bottom: 6px; }
p  { font-size: 14px; line-height: 1.6; color: #333; margin: 8px 0; }
ul, ol { margin: 8px 0; padding-left: 20px; font-size: 14px; color: #333; line-height: 1.6; }
li { margin-bottom: 4px; }
a { color: #2f6fed; }
code { background: #f0f0f2; padding: 1px 4px; border-radius: 3px; font-size: 13px; }

table { width: 100%; min-width: 440px; border-collapse: collapse; margin: 12px 0; font-size: 13px; }
th, td { text-align: left; padding: 8px 6px; border-bottom: 1px solid #eee; vertical-align: top; }
th { color: #666; font-weight: 600; }

/* A point worth pulling out of the body text — obligations, warnings,
   the things a user would be annoyed to discover later. */
.callout {
  border-left: 3px solid #2f6fed;
  background: #f4f8ff;
  padding: 12px 14px;
  border-radius: 0 6px 6px 0;
  margin: 12px 0;
}
.callout p { margin: 4px 0; }

.warning { border-color: #d9534f; background: #fff5f5; }
.warning h2 { color: #c9302c; }

/* Marks text that still needs a real value before publication. Visually
   loud on purpose — these must not survive to a live page unnoticed. */
.fill {
  background: #fff3bf;
  border-bottom: 1px dashed #b58900;
  padding: 0 3px;
  font-style: normal;
}

.note { font-size: 13px; color: #666; }

footer {
  text-align: center;
  font-size: 12px;
  color: #999;
  margin-top: 30px;
  line-height: 1.9;
}
footer a { color: #777; }
footer .entity { font-size: 12px; color: #aaa; margin-top: 10px; }
