/* Eduarte Connect — userdocumentatie, web-styling (scherm). Huisstijl: Inter, navy #0D1E93. */
:root {
  --navy: #0D1E93;
  --accent: #00A368;
  --tekst: #1B1B2E;
  --grijs: #6C6F80;
  --lichtgrijs: #F2F3F7;
  --lijn: #D5D8E2;
  --rood: #B00020;
}
* { box-sizing: border-box; }
body { margin: 0; padding-left: var(--ribbon-width); font-family: "Inter", -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  color: var(--tekst); line-height: 1.55; background: #fff; }
:root { --ribbon-width: 32px; }

/* Topnav — gedeeld met de site */
.topnav { position: sticky; top: 0; z-index: 10; background: var(--navy); color: #fff;
  display: flex; justify-content: space-between; align-items: center; padding: 12px 24px; }
.topnav .brand { font-weight: 700; }
.topnav a { color: #fff; text-decoration: none; font-weight: 600; opacity: .9; }
.topnav a:hover { opacity: 1; text-decoration: underline; }

/* Vertrouwelijkheids-ribbon: vast, verticaal, links, altijd zichtbaar (ook bij scrollen). */
.confidential { position: fixed; top: 0; left: 0; bottom: 0; width: var(--ribbon-width);
  background: #fbeaec; border-right: 1px solid #f3c9cf; z-index: 20; overflow: hidden; }
.confidential span { position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotate(-90deg); transform-origin: center;
  white-space: nowrap; color: var(--rood); font-size: .8rem; font-weight: 600; letter-spacing: .5px; }

.doc { max-width: 860px; margin: 0 auto; padding: 32px 24px 80px; }

.dochead { border-bottom: 2px solid var(--lijn); padding-bottom: 16px; margin-bottom: 24px; }
.dochead .doctype { color: var(--accent); text-transform: uppercase; letter-spacing: 1px;
  font-weight: 600; font-size: .8rem; }
.dochead .titel { color: var(--navy); font-size: 2rem; font-weight: 700; margin: 4px 0 0; }
.dochead .ondertitel { color: var(--grijs); font-size: 1.1rem; font-weight: 600; margin-top: 4px; }
.dochead .meta { color: var(--grijs); font-size: .85rem; margin-top: 8px; }

h1, h2, h3, h4 { color: var(--navy); font-weight: 700; line-height: 1.25; }
h1 { font-size: 1.5rem; margin: 1.8em 0 .4em; padding-top: .5em; border-top: 1px solid var(--lijn); }
h2 { font-size: 1.2rem; font-weight: 600; margin: 1.4em 0 .3em; }
h3 { font-size: 1.05rem; font-weight: 600; margin: 1.1em 0 .25em; }
p { margin: .6em 0; }
a { color: var(--navy); }
strong { font-weight: 600; }

#TOC { background: var(--lichtgrijs); border-radius: 8px; padding: 16px 20px; margin-bottom: 28px; }
#TOC h2 { margin: .1em 0 .5em; font-size: 1rem; border: none; }
#TOC ul { margin: 0; padding-left: 1.2em; }
#TOC ul ul { padding-left: 1em; }
#TOC a { color: var(--tekst); text-decoration: none; }
#TOC a:hover { color: var(--navy); text-decoration: underline; }

table { border-collapse: collapse; width: 100%; margin: 1em 0; font-size: .92rem; }
th, td { border: 1px solid var(--lijn); padding: 7px 10px; text-align: left; vertical-align: top; }
th { background: var(--navy); color: #fff; font-weight: 600; }

code { font-family: "SFMono-Regular", Consolas, monospace; background: var(--lichtgrijs);
  padding: 1px 5px; border-radius: 3px; font-size: .9em; }
pre { background: var(--lichtgrijs); padding: 12px 14px; border-left: 3px solid var(--accent);
  overflow-x: auto; border-radius: 4px; }
pre code { background: none; padding: 0; }
blockquote { border-left: 3px solid var(--accent); background: var(--lichtgrijs); margin: 1em 0;
  padding: 8px 16px; color: var(--grijs); border-radius: 4px; }

svg { max-width: 100%; height: auto; }
img { max-width: 100%; }
