:root {
  --bg: #f7f5f2;
  --panel: #ffffff;
  --text: #1f2933;
  --muted: #5b6572;
  --link: #0f62fe;
  --link-hover: #0842a0;
  --border: #d8dee9;
  --code-bg: #eef2f7;
  --maxw: 1000px;
}

* { box-sizing: border-box; }

html {
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

body {
  margin: 0;
  padding: 0;
}

main, .content, #content {
  max-width: var(--maxw);
  margin: 3rem auto;
  padding: 2rem 2.25rem;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  margin: 1.6rem 0 0.75rem;
  scroll-margin-top: 280px;
}

h1 { font-size: 2.1rem; }
h2 { font-size: 1.55rem; }
h3 { font-size: 1.25rem; }
.topbar-menu { font-size: 1rem; }

p, ul, ol, blockquote, pre, table {
  margin: 0 0 1rem;
}

a {
  color: var(--link);
  text-decoration: none;
}

a:hover {
  color: var(--link-hover);
  text-decoration: underline;
}

blockquote {
  padding: 0.75rem 1rem;
  border-left: 4px solid var(--border);
  color: var(--muted);
  background: #fafbfc;
}

code, pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
}

code {
  padding: 0.15rem 0.35rem;
  background: var(--code-bg);
  border-radius: 6px;
}

pre {
  padding: 1rem 1.1rem;
  overflow-x: auto;
  background: #f4f7fb;
  border: 1px solid var(--border);
  border-radius: 12px;
}

.logo {
  width: max(100%, 70px);
  height: auto;
  border-radius: 10px;
}

.logo2 {
  width: max(30%, 70px);
  height: auto;
  border-radius: 10px;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th, td {
  text-align: center;
  padding: 0.7rem 0.8rem;
  border-bottom: 1px solid var(--border);
}

hr {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 2rem 0;
}

#postamble, #preamble, .status {
  max-width: var(--maxw);
  margin: 0 auto 2rem;
  padding: 0 2.25rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.topbar-menu-logos {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.topbar-menu-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.org-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: white;
}

