/* District Executive Briefing -- standalone stylesheet. The exec portal must
   never load dashboard.css (and QM never loads this file). CSP is
   style-src 'self', so every rule lives here -- no inline styles.
   Executive-neutral branding: black/ink on white, no QM nav, no QM status
   colors. */

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: #111;
  background: #fff;
}

.exec-topbar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 24px;
  border-bottom: 1px solid #111;
}

.exec-wordmark {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.exec-spacer { flex: 1; }

.exec-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 24px;
}

.exec-landing, .exec-home { text-align: center; }

h1 {
  font-size: 26px;
  font-weight: 700;
  margin: 0 0 8px;
}

.exec-lede {
  margin: 0 0 32px;
  color: #444;
}

.exec-notice {
  margin: 16px auto;
  max-width: 420px;
  padding: 10px 14px;
  border: 1px solid #111;
  font-size: 14px;
}

.exec-btn-login {
  display: inline-block;
  padding: 10px 22px;
  border: 1px solid #111;
  color: #111;
  text-decoration: none;
  font-size: 15px;
}

.exec-btn-login:hover { background: #111; color: #fff; }

.exec-placeholder {
  margin-top: 24px;
  color: #444;
  font-style: italic;
}

.exec-logout button {
  padding: 6px 14px;
  border: 1px solid #111;
  background: #fff;
  color: #111;
  font: inherit;
  font-size: 13px;
  cursor: pointer;
}

.exec-logout button:hover { background: #111; color: #fff; }
