/* Endeur management interface — visual language of the Endeur mockup:
   dark navy sidebar, light canvas, white cards, blue primary, status pills. */
:root {
  --side: #0f1f3d; --side-2: #172b52; --side-fg: #c9d4ea; --side-active: #2f6bff;
  --bg: #f3f6fb; --card: #ffffff; --fg: #15213b; --muted: #66728a; --faint: #97a1b5; --line: #e4e9f2; --line-2: #eef2f8;
  --blue: #2f6bff; --blue-bg: #e9f0ff; --green: #16a05d; --green-bg: #e6f6ee; --orange: #e08a00; --orange-bg: #fff3dc;
  --red: #dc3b3b; --red-bg: #fde9e9; --purple: #7c4dff; --purple-bg: #f0eaff; --grey-bg: #eef1f6;
  --shadow: 0 1px 2px rgba(16,32,64,.05), 0 4px 16px rgba(16,32,64,.05);
  --radius: 12px;
  color-scheme: light;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --side: #0b1528; --side-2: #14223d; --bg: #0f1726; --card: #162034; --fg: #e6ecf7; --muted: #a2adc2; --faint: #7a869e;
    --line: #26324a; --line-2: #1d2940; --blue-bg: #1b2d57; --green-bg: #14352a; --orange-bg: #3a2c10; --red-bg: #3d1c1f; --purple-bg: #2b2150; --grey-bg: #1f2a40;
    --shadow: none; color-scheme: dark;
  }
}
* { box-sizing: border-box; }
[hidden] { display: none !important; }
html, body { margin: 0; height: 100%; }
body { background: var(--bg); color: var(--fg); font: 14px/1.5 Inter, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif; -webkit-font-smoothing: antialiased; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
h1 { font-size: 24px; line-height: 1.25; margin: 0 0 4px; letter-spacing: -.01em; }
h2 { font-size: 16px; margin: 0; }
h3 { font-size: 14px; margin: 0; }
small, .muted { color: var(--muted); }
.faint { color: var(--faint); }
button { font: inherit; }

/* ---------- shell */
.shell { display: flex; min-height: 100vh; }
.side { width: 232px; flex: none; background: var(--side); color: var(--side-fg); display: flex; flex-direction: column; position: sticky; top: 0; height: 100vh; }
.brand { display: flex; align-items: center; gap: 10px; padding: 20px 20px 18px; color: #fff; font-weight: 700; font-size: 18px; }
.brand:hover { text-decoration: none; }
.brand svg { width: 26px; height: 26px; }
nav { padding: 4px 12px; flex: 1; overflow-y: auto; }
nav a { display: flex; align-items: center; gap: 12px; padding: 9px 12px; border-radius: 8px; color: var(--side-fg); margin-bottom: 2px; font-weight: 500; }
nav a:hover { background: var(--side-2); text-decoration: none; color: #fff; }
nav a.on { background: var(--side-active); color: #fff; }
nav a svg { width: 18px; height: 18px; flex: none; opacity: .9; }
nav a .count { margin-left: auto; background: var(--red); color: #fff; border-radius: 999px; font-size: 11px; font-weight: 700; min-width: 20px; height: 20px; display: grid; place-items: center; padding: 0 6px; }
nav .sep { height: 1px; background: rgba(255,255,255,.07); margin: 10px 8px; }
.side-foot { padding: 14px 16px; border-top: 1px solid rgba(255,255,255,.07); }
.me { display: flex; align-items: center; gap: 10px; color: #fff; }
.me small { display: block; color: var(--side-fg); }
.main { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.top { display: flex; align-items: center; gap: 12px; padding: 14px 28px; background: var(--card); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 5; }
.crumbs { font-size: 13px; color: var(--muted); min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.crumbs a { color: var(--muted); }
.crumbs b { color: var(--fg); font-weight: 600; }
.top-right { margin-left: auto; display: flex; align-items: center; gap: 12px; }
.live { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; color: var(--muted); }
.live i { width: 8px; height: 8px; border-radius: 50%; background: var(--faint); }
.live.on i { background: var(--green); box-shadow: 0 0 0 3px var(--green-bg); }
.live.off i { background: var(--red); }
.menu { display: none; }
.content { padding: 24px 28px 48px; max-width: 1480px; width: 100%; outline: none; }
.scrim { display: none; }

/* ---------- basics */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 6px; border: 1px solid var(--line); background: var(--card); color: var(--fg); padding: 8px 14px; border-radius: 8px; cursor: pointer; font-weight: 600; font-size: 13px; white-space: nowrap; }
.btn:hover { border-color: var(--faint); }
.btn:disabled { opacity: .55; cursor: default; }
.btn.primary { background: var(--blue); border-color: var(--blue); color: #fff; }
.btn.primary:hover { filter: brightness(1.07); }
.btn.green { background: var(--green); border-color: var(--green); color: #fff; }
.btn.danger { color: var(--red); }
.btn.small { padding: 5px 10px; font-size: 12px; }
.btn svg { width: 15px; height: 15px; }
.icon-btn { border: 0; background: none; padding: 6px; border-radius: 8px; cursor: pointer; color: var(--muted); }
.icon-btn svg { width: 20px; height: 20px; }
.card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.card > .hd { display: flex; align-items: center; gap: 10px; padding: 16px 18px 10px; }
.card > .hd .right { margin-left: auto; }
.card > .hd h2 { white-space: nowrap; }
summary.hd { flex-wrap: wrap; }
summary.hd::-webkit-details-marker { display: none; }
.card > .bd { padding: 6px 18px 16px; }
.card > .bd.flush { padding: 0 0 6px; }
.grid { display: grid; gap: 18px; }
.cols-main { grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr); align-items: start; }
.stack { display: flex; flex-direction: column; gap: 18px; min-width: 0; }
.row { display: flex; align-items: center; gap: 10px; }
.wrap { flex-wrap: wrap; }
.spacer { flex: 1; }
.page-hd { display: flex; align-items: flex-end; gap: 16px; margin-bottom: 20px; flex-wrap: wrap; }
.page-hd p { margin: 0; color: var(--muted); }
.page-hd .right { margin-left: auto; display: flex; gap: 8px; }
.pill { display: inline-flex; align-items: center; gap: 5px; border-radius: 999px; padding: 2px 9px; font-size: 12px; font-weight: 600; background: var(--grey-bg); color: var(--muted); white-space: nowrap; }
.pill::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.pill.plain::before { display: none; }
.pill.green { background: var(--green-bg); color: var(--green); }
.pill.blue { background: var(--blue-bg); color: var(--blue); }
.pill.orange { background: var(--orange-bg); color: var(--orange); }
.pill.red { background: var(--red-bg); color: var(--red); }
.pill.purple { background: var(--purple-bg); color: var(--purple); }
.pill.grey { background: var(--grey-bg); color: var(--muted); }
.badge { display: inline-grid; place-items: center; min-width: 22px; height: 22px; padding: 0 7px; border-radius: 999px; background: var(--grey-bg); color: var(--muted); font-size: 12px; font-weight: 700; }
.avatar { width: 34px; height: 34px; border-radius: 50%; display: inline-grid; place-items: center; font-weight: 700; color: #fff; flex: none; font-size: 13px; }
.avatar.lg { width: 56px; height: 56px; font-size: 20px; }
.avatar.sm { width: 26px; height: 26px; font-size: 11px; }
.avatar.owner { background: linear-gradient(135deg, #2f6bff, #7c4dff); }
.a-director { background: #2f6bff; } .a-research { background: #16a05d; } .a-finance { background: #e08a00; }
.a-engineering { background: #7c4dff; } .a-review { background: #dc3b3b; }
.progress { height: 6px; background: var(--line-2); border-radius: 99px; overflow: hidden; }
.progress > i { display: block; height: 100%; background: var(--blue); border-radius: 99px; }
.empty { color: var(--muted); padding: 14px 0; }
.err { background: var(--red-bg); color: var(--red); border-radius: 10px; padding: 12px 14px; }
.hint { background: var(--blue-bg); color: var(--fg); border-radius: 10px; padding: 10px 12px; font-size: 13px; }
.tabs { display: inline-flex; gap: 4px; background: var(--grey-bg); padding: 4px; border-radius: 10px; flex-wrap: wrap; }
.tabs button { border: 0; background: none; padding: 6px 12px; border-radius: 7px; cursor: pointer; font-weight: 600; font-size: 13px; color: var(--muted); }
.tabs button.on { background: var(--card); color: var(--fg); box-shadow: var(--shadow); }
.tabs button .badge { margin-left: 4px; height: 18px; min-width: 18px; font-size: 11px; }
textarea, input[type=text], select { width: 100%; font: inherit; color: var(--fg); background: var(--card); border: 1px solid var(--line); border-radius: 10px; padding: 9px 11px; }
textarea:focus, input:focus, select:focus { outline: 2px solid var(--blue-bg); border-color: var(--blue); }
label.field { display: block; font-weight: 600; font-size: 13px; margin: 12px 0 6px; }
pre, code { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 12px; }
pre { background: var(--grey-bg); border-radius: 8px; padding: 12px; overflow: auto; max-height: 420px; white-space: pre-wrap; word-break: break-word; margin: 8px 0 0; }
.prose p { margin: 0 0 8px; } .prose ul { margin: 0 0 8px; padding-left: 20px; } .prose h4 { margin: 12px 0 4px; font-size: 14px; }

/* ---------- today */
.health { display: flex; align-items: center; gap: 12px; padding: 14px 18px; border-radius: var(--radius); margin-bottom: 18px; font-weight: 600; }
.health svg { width: 22px; height: 22px; flex: none; }
.health.green { background: var(--green-bg); color: var(--green); }
.health.orange { background: var(--orange-bg); color: var(--orange); }
.health.red { background: var(--red-bg); color: var(--red); }
.health span { color: var(--fg); font-weight: 500; }
.kpis { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 14px; margin-bottom: 18px; }
.kpi { padding: 14px 16px; }
.kpi small { display: block; font-size: 12px; }
.kpi b { display: block; font-size: 24px; margin-top: 4px; letter-spacing: -.02em; }
.kpi .sub { font-size: 12px; color: var(--muted); }
.kpi a { color: inherit; } .kpi a:hover { text-decoration: none; }
.att { display: flex; gap: 12px; padding: 12px 18px; border-top: 1px solid var(--line-2); align-items: flex-start; }
.att:first-child { border-top: 0; }
.att .ic { width: 32px; height: 32px; border-radius: 9px; display: grid; place-items: center; flex: none; }
.att .ic svg { width: 17px; height: 17px; }
.att.owner .ic { background: var(--purple-bg); color: var(--purple); }
.att.red .ic { background: var(--red-bg); color: var(--red); }
.att.orange .ic { background: var(--orange-bg); color: var(--orange); }
.att > div { flex: 1; min-width: 0; }
.att b { display: block; overflow-wrap: anywhere; }
.att small { display: block; }
.att .go { margin-left: auto; align-self: center; }
.goal-card { padding: 16px 18px; border-top: 1px solid var(--line-2); }
.goal-card:first-child { border-top: 0; }
.goal-card .gt { font-weight: 600; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.goal-card .meta { display: flex; gap: 10px; align-items: center; margin: 8px 0; flex-wrap: wrap; font-size: 12px; color: var(--muted); }
.goal-card .progress { flex: 1; min-width: 120px; }
.mini-items { margin-top: 8px; display: flex; flex-direction: column; gap: 6px; }
.mini { display: flex; align-items: center; gap: 8px; font-size: 13px; min-width: 0; }
.mini .t { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; min-width: 0; flex: 1; }
.agent-row { display: flex; gap: 12px; align-items: center; padding: 11px 18px; border-top: 1px solid var(--line-2); color: var(--fg); }
.agent-row:first-child { border-top: 0; }
.agent-row:hover { background: var(--line-2); text-decoration: none; }
.agent-row .who { min-width: 0; flex: 1; }
.agent-row .who b { display: block; }
.agent-row .who small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.tl { list-style: none; margin: 0; padding: 0; }
.tl li { display: flex; gap: 12px; padding: 10px 18px; border-top: 1px solid var(--line-2); align-items: flex-start; }
.tl li:first-child { border-top: 0; }
.tl .dot { width: 26px; height: 26px; border-radius: 50%; flex: none; display: grid; place-items: center; font-size: 11px; font-weight: 700; color: #fff; }
.tl .dot.endeur { background: var(--side); } .tl .dot.worker { background: var(--faint); }
.tl .txt { min-width: 0; flex: 1; }
.tl .txt a { color: var(--fg); }
.tl .when { font-size: 12px; color: var(--faint); white-space: nowrap; }
.tl .tone-ok { color: var(--green); } .tl .tone-bad { color: var(--red); } .tl .tone-warn { color: var(--orange); } .tl .tone-owner { color: var(--purple); }

/* ---------- lists / tables */
.list { display: flex; flex-direction: column; }
.li { display: flex; gap: 12px; align-items: flex-start; padding: 12px 18px; border-top: 1px solid var(--line-2); color: var(--fg); min-width: 0; }
.li:first-child { border-top: 0; }
a.li:hover { background: var(--line-2); text-decoration: none; }
.li .main-txt { min-width: 0; flex: 1; }
.li .main-txt b, .li .main-txt .t { display: block; overflow-wrap: anywhere; }
.li .side-txt { text-align: right; flex: none; display: flex; flex-direction: column; align-items: flex-end; gap: 4px; }
.section-title { display: flex; align-items: center; gap: 8px; padding: 14px 18px 6px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); }

/* ---------- agents */
.agents-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 18px; }
.agent-card { padding: 18px; display: flex; flex-direction: column; gap: 12px; color: var(--fg); }
.agent-card:hover { text-decoration: none; border-color: var(--blue); }
.agent-card .row b { font-size: 15px; }
.agent-card .now { background: var(--line-2); border-radius: 10px; padding: 10px 12px; font-size: 13px; }
.agent-card .now small { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: .04em; font-weight: 700; }
.agent-card .stats { display: flex; gap: 14px; font-size: 12px; color: var(--muted); flex-wrap: wrap; }
.agent-card .stats b { color: var(--fg); }
.agent-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, 440px); gap: 18px; align-items: start; }
.profile { padding: 18px; display: flex; gap: 16px; align-items: flex-start; }
.profile .info { min-width: 0; flex: 1; }
.profile .acts { display: flex; flex-direction: column; gap: 8px; }
.mobile-only { display: none !important; }
.kv { display: grid; grid-template-columns: 150px 1fr; gap: 6px 12px; font-size: 13px; padding: 4px 18px 16px; }
.kv dt { color: var(--muted); } .kv dd { margin: 0; }
.bucket-hd { display: flex; align-items: center; gap: 8px; padding: 12px 18px 4px; }
.bucket-hd h3 { font-size: 13px; }
.item-actions { display: flex; gap: 6px; margin-top: 6px; flex-wrap: wrap; }

/* ---------- chat */
.chat { display: flex; flex-direction: column; height: calc(100vh - 110px); position: sticky; top: 84px; }
.chat .hd { border-bottom: 1px solid var(--line-2); padding-bottom: 12px; }
.chat-log { flex: 1; overflow-y: auto; padding: 14px 16px; display: flex; flex-direction: column; gap: 10px; }
.msg { max-width: 88%; padding: 9px 12px; border-radius: 14px; font-size: 13.5px; overflow-wrap: anywhere; }
.msg.owner { align-self: flex-end; background: var(--blue); color: #fff; border-bottom-right-radius: 4px; }
.msg.owner.instruction { background: var(--purple); }
.msg.agent { align-self: flex-start; background: var(--grey-bg); border-bottom-left-radius: 4px; }
.msg.system { align-self: center; background: none; color: var(--muted); font-size: 12px; text-align: center; max-width: 100%; }
.msg .meta { font-size: 11px; opacity: .75; margin-top: 3px; }
.msg .tag { display: inline-block; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; opacity: .9; margin-bottom: 2px; }
.msg p { margin: 0 0 6px; } .msg p:last-child { margin: 0; }
.thinking { align-self: flex-start; color: var(--muted); font-size: 13px; display: flex; align-items: center; gap: 8px; }
.thinking i { width: 6px; height: 6px; background: var(--faint); border-radius: 50%; animation: blink 1.2s infinite; }
.thinking i:nth-child(2) { animation-delay: .2s; } .thinking i:nth-child(3) { animation-delay: .4s; }
@keyframes blink { 0%, 80%, 100% { opacity: .25; } 40% { opacity: 1; } }
.suggest { align-self: stretch; border: 1px dashed var(--purple); background: var(--purple-bg); border-radius: 12px; padding: 10px 12px; font-size: 13px; }
.suggest b { color: var(--purple); }
.suggest .row { margin-top: 8px; }
.quick { display: flex; gap: 6px; flex-wrap: wrap; padding: 8px 16px 0; }
.quick button { border: 1px solid var(--line); background: var(--card); border-radius: 999px; padding: 4px 10px; font-size: 12px; cursor: pointer; white-space: nowrap; color: var(--fg); }
.quick button:hover { border-color: var(--blue); color: var(--blue); }
.composer { padding: 10px 16px 14px; border-top: 1px solid var(--line-2); }
.composer textarea { min-height: 64px; max-height: 180px; resize: vertical; }
.composer .row { margin-top: 8px; }
.mode { display: inline-flex; background: var(--grey-bg); border-radius: 8px; padding: 3px; }
.mode button { border: 0; background: none; padding: 5px 10px; border-radius: 6px; font-size: 12px; font-weight: 600; color: var(--muted); cursor: pointer; }
.mode button.on { background: var(--card); color: var(--fg); box-shadow: var(--shadow); }
.mode button.on.instr { color: var(--purple); }
.composer select { width: auto; padding: 5px 8px; font-size: 12px; }

/* ---------- decisions */
.dec { padding: 18px; border-top: 1px solid var(--line-2); }
.dec:first-child { border-top: 0; }
.dec .q { font-size: 15px; font-weight: 600; margin: 6px 0; }
.dec .facts { display: flex; gap: 16px; flex-wrap: wrap; font-size: 13px; color: var(--muted); margin: 6px 0 10px; }
.dec .facts b { color: var(--fg); }
.dec details { margin: 8px 0; font-size: 13px; }
.dec summary { cursor: pointer; color: var(--blue); font-weight: 600; }
.deadline.soon { color: var(--red); font-weight: 700; }

/* ---------- toast / modal */
.toast { position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%) translateY(20px); background: var(--side); color: #fff; padding: 10px 16px; border-radius: 10px; opacity: 0; pointer-events: none; transition: .2s; z-index: 50; max-width: calc(100% - 32px); font-size: 13px; }
.toast.show { opacity: 1; transform: translateX(-50%); }
.toast.bad { background: var(--red); }
.modal { position: fixed; inset: 0; background: rgba(10,20,40,.45); display: grid; place-items: center; z-index: 40; padding: 16px; }
.modal[hidden] { display: none; }
.modal .card { width: min(560px, 100%); padding: 20px; max-height: calc(100vh - 32px); overflow: auto; }
.modal h2 { font-size: 18px; margin-bottom: 4px; }

/* ---------- responsive */
@media (max-width: 1280px) { .kpis { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 1100px) {
  .cols-main, .agent-layout { grid-template-columns: minmax(0, 1fr); }
  .chat { position: static; height: 70vh; min-height: 460px; }
}
@media (max-width: 900px) {
  .side { position: fixed; left: 0; top: 0; bottom: 0; z-index: 30; transform: translateX(-100%); transition: transform .2s; }
  .side.open { transform: none; }
  .scrim.open { display: block; position: fixed; inset: 0; background: rgba(10,20,40,.4); z-index: 20; }
  .menu { display: inline-grid; }
  .top { padding: 10px 16px; }
  .content { padding: 16px 16px 40px; }
  .kpis { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .kpi b { font-size: 20px; }
  .live span { display: none; }
  h1 { font-size: 20px; }
  .kv { grid-template-columns: 1fr; } .kv dt { margin-top: 6px; }
  .profile { flex-wrap: wrap; } .profile .info { flex-basis: calc(100% - 80px); } .profile .acts { flex-direction: row; width: 100%; }
  .profile .acts .btn { flex: 1; }
  .mobile-only { display: inline-flex !important; }
  .li { padding: 12px 14px; } .li .side-txt { max-width: 42%; }
  .page-hd .right { margin-left: 0; }
}
@media (max-width: 520px) {
  #direct { padding: 7px 10px; }
  .li { flex-wrap: wrap; } .li .main-txt { flex-basis: calc(100% - 40px); } .li .side-txt { max-width: 100%; align-items: flex-start; text-align: left; flex-direction: row; flex-wrap: wrap; }
  .msg { max-width: 94%; }
}

/* ---------- inloggen en beheer */
body.anon .side, body.anon .top, body.anon .scrim { display: none !important; }
body.anon .content { max-width: none; padding: 0; }
.auth { min-height: 100vh; display: grid; place-items: center; padding: 24px 16px; background: linear-gradient(160deg, var(--side) 0 38%, var(--bg) 38%); }
.auth-card { width: min(440px, 100%); padding: 28px 26px; }
.auth-card h1 { margin: 14px 0 4px; font-size: 22px; }
.auth-card form { margin-top: 8px; }
.auth-card input[type=email], .auth-card input[type=password], .auth-card input[type=text] { width: 100%; font: inherit; color: var(--fg); background: var(--card); border: 1px solid var(--line); border-radius: 10px; padding: 10px 12px; }
.auth-card .err { margin-top: 12px; }
.brand-sm { display: flex; align-items: center; gap: 8px; font-size: 17px; }
.brand-sm svg { width: 24px; height: 24px; }
.btn.wide { width: 100%; margin-top: 16px; padding: 11px 14px; }
.small-links { font-size: 13px; margin: 14px 0 0; }
.qr { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 10px; width: 220px; margin: 12px auto; }
.qr svg { display: block; width: 100%; height: auto; }
.secret { margin: 8px 0; font-size: 13px; }
.secret summary { cursor: pointer; color: var(--blue); }
.mono { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 13px; background: var(--grey-bg); padding: 6px 8px; border-radius: 6px; display: inline-block; }
.codes { columns: 2; padding-left: 22px; margin: 14px 0; font-size: 14px; }
.codes li { margin-bottom: 6px; }
.org-select { width: auto; max-width: 220px; padding: 7px 10px; font-size: 13px; }
.me { position: relative; }
.me .logout { margin-left: auto; color: var(--side-fg); }
.me .logout:hover { color: #fff; }
.me > div { min-width: 0; flex: 1; }
.form-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 0 14px; }
.user-card .hd { flex-wrap: wrap; }
.caps { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 4px 12px; margin-top: 8px; font-size: 13px; }
.caps label { display: flex; gap: 6px; align-items: center; }
.li.member .side-txt { flex-direction: row; gap: 6px; }
@media (max-width: 900px) { .org-select { max-width: 140px; } }
.check{display:inline-flex;align-items:center;gap:6px;font-size:13px;color:var(--muted);cursor:pointer}
.check input{width:auto;margin:0}
