/* =========================================================================
   Pailon Console — built on the Folio design system
   Editorial paper + terminal precision, dialed slightly denser for an
   audit-grade operations surface. Light (cream) only.
   ========================================================================= */

@import url("folio-tokens.79818e04e162.css");

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; height: 100%; }
body {
  background: var(--bg-page);
  color: var(--fg-1);
  font-family: var(--font-ui);
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
}
[data-lucide] { stroke-width: 1.5; }
a { text-decoration: none; }
::selection { background: var(--folio-green-100); color: var(--ink-900); }

/* ---- App shell -------------------------------------------------------- */
.app {
  display: grid;
  grid-template-columns: 248px 1fr;
  min-height: 100vh;
}

/* ---- Sidebar ---------------------------------------------------------- */
.side {
  background: var(--cream-50);
  border-right: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 0;
  height: 100vh;
}
.side__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--rule-subtle);
}
.brandmark { width: 26px; height: 26px; flex: 0 0 auto; color: var(--folio-green-700); }
.brandword {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink-900);
  font-variation-settings: "opsz" 36;
}
.brandtag {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-top: 1px;
}
.side__org {
  margin: 12px 12px 4px;
  padding: 10px 12px;
  border: 1px solid var(--rule-subtle);
  border-radius: var(--radius-md);
  background: var(--cream-100);
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: border-color var(--dur-hover) var(--ease);
}
.side__org:hover { border-color: var(--rule); }

/* Org switcher: an explicit button + JS-toggled menu (no <details>/<summary> —
   their rendering varies by engine and Tailwind's preflight restyles them).
   console.js toggles .is-open on the .orgswitch wrapper. */
.orgswitch { position: relative; }
.orgswitch__btn {
  /* .side__org provides the card look; reset the button chrome around it. */
  width: calc(100% - 24px);
  font: inherit;
  text-align: left;
  color: inherit;
}
.orgswitch__label { flex: 1; min-width: 0; }
.orgswitch__chevron { width: 14px; height: 14px; color: var(--fg-3); flex: 0 0 auto; }
.orgswitch.is-open .side__org { border-color: var(--rule); }
.orgswitch__menu {
  display: none;
  position: absolute;
  left: 12px; right: 12px;
  top: calc(100% + 4px);
  z-index: 60;
  background: var(--bg-elevated);
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-float);
  padding: 5px;
  max-height: 340px;
  overflow-y: auto;
}
.orgswitch.is-open .orgswitch__menu { display: block; }
.orgswitch__head {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-4);
  padding: 6px 9px 4px;
}
.orgswitch__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 9px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background var(--dur-hover) var(--ease);
}
.orgswitch__item:hover { background: var(--cream-100); }
.orgswitch__item.is-current { background: var(--cream-100); }
.orgswitch__item .orgname { font-size: 12.5px; font-weight: 500; color: var(--ink-900); line-height: 1.2; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.orgswitch__item .orgmeta { font-family: var(--font-mono); font-size: 10px; color: var(--fg-3); margin-top: 1px; }
.orgswitch__item.is-current .orgname { font-weight: 600; }
.orgswitch__item--action svg,
.orgswitch__item--action i { width: 15px; height: 15px; color: var(--fg-3); flex: 0 0 auto; margin: 0 3px; }
.orgswitch__check { width: 14px; height: 14px; color: var(--folio-green-700); flex: 0 0 auto; }
.orgswitch__rule { height: 1px; background: var(--rule-subtle); margin: 5px 4px; }
.orgmark--sm { width: 22px; height: 22px; font-size: 12px; border-radius: var(--radius-sm); }
.orgmark {
  width: 28px; height: 28px; flex: 0 0 auto;
  border-radius: var(--radius-sm);
  background: var(--folio-green-700);
  color: var(--cream-50);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  display: flex; align-items: center; justify-content: center;
}
.side__org .orgname { font-size: 13px; font-weight: 600; color: var(--ink-900); line-height: 1.2; }
.side__org .orgmeta { font-family: var(--font-mono); font-size: 10px; color: var(--fg-3); margin-top: 2px; }

.side__nav { flex: 1; overflow-y: auto; padding: 8px 12px 16px; }
.navgroup { margin-top: 16px; }
.navgroup__label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-4);
  padding: 0 10px;
  margin-bottom: 6px;
}
.navitem {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 10px;
  border-radius: var(--radius-md);
  color: var(--fg-2);
  font-size: 13.5px;
  line-height: 1;
  position: relative;
  transition: background var(--dur-hover) var(--ease), color var(--dur-hover) var(--ease);
}
.navitem [data-lucide] { width: 16px; height: 16px; color: var(--fg-3); }
.navitem:hover { background: var(--cream-100); color: var(--ink-900); }
.navitem.is-active {
  background: var(--folio-green-100);
  color: var(--folio-green-900);
  font-weight: 500;
}
.navitem.is-active [data-lucide] { color: var(--folio-green-700); }
.navitem.is-active::before {
  content: "";
  position: absolute;
  left: -12px; top: 6px; bottom: 6px;
  width: 2px;
  background: var(--folio-green-700);
  border-radius: 0 2px 2px 0;
}
.navitem__count {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-3);
  background: var(--cream-200);
  padding: 1px 7px;
  border-radius: var(--radius-pill);
}
.navitem.is-active .navitem__count { background: var(--cream-50); color: var(--folio-green-900); }
.navitem__count.is-alert { background: var(--bindery-red-100); color: var(--bindery-red-700); }

.side__foot {
  border-top: 1px solid var(--rule-subtle);
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.avatar {
  width: 30px; height: 30px; border-radius: var(--radius-pill);
  background: var(--folio-green-100); color: var(--folio-green-900);
  font-size: 11px; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  flex: 0 0 auto;
}
.side__foot .uname { font-size: 12.5px; font-weight: 600; color: var(--ink-900); line-height: 1.2; }
.side__foot .urole { font-family: var(--font-mono); font-size: 10px; color: var(--fg-3); margin-top: 1px; }

/* ---- Main column ------------------------------------------------------ */
.main { display: flex; flex-direction: column; min-width: 0; }
.topbar {
  position: sticky; top: 0; z-index: 20;
  height: 52px;
  background: color-mix(in srgb, var(--cream-100) 92%, transparent);
  border-bottom: 1px solid var(--rule);
  display: flex; align-items: center; gap: 16px;
  padding: 0 24px;
}
.crumbs { display: flex; align-items: center; gap: 8px; font-size: 13px; }
.crumbs a { color: var(--fg-3); }
.crumbs a:hover { color: var(--ink-900); }
.crumbs .sep { color: var(--ink-200); }
.crumbs .here { color: var(--ink-900); font-weight: 500; }
.searchbox {
  margin-left: auto;
  display: flex; align-items: center; gap: 8px;
  width: 280px; padding: 6px 10px;
  background: var(--cream-50);
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
}
.searchbox [data-lucide] { width: 14px; height: 14px; color: var(--fg-3); }
.searchbox input { flex: 1; border: none; background: transparent; outline: none; font-size: 13px; color: var(--ink-900); font-family: var(--font-ui); }
.kbd { font-family: var(--font-mono); font-size: 10.5px; color: var(--fg-3); padding: 2px 6px; background: var(--cream-200); border-radius: var(--radius-sm); }
.topchip {
  display: flex; align-items: center; gap: 7px;
  padding: 5px 10px;
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  background: var(--cream-50);
  font-size: 12px; color: var(--fg-2);
}
.topchip [data-lucide] { width: 14px; height: 14px; color: var(--folio-green-700); }

/* ---- Page scaffold ---------------------------------------------------- */
.page { padding: 28px 32px 64px; max-width: 1240px; width: 100%; margin: 0 auto; }
.pagehead { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 24px; }
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--fg-3); font-weight: 500; margin-bottom: 8px;
}
.page__title {
  font-family: var(--font-display);
  font-size: 30px; line-height: 1.1; letter-spacing: -0.02em;
  color: var(--ink-900); font-weight: 400;
  font-variation-settings: "opsz" 40;
}
.page__sub { font-size: 14px; color: var(--fg-2); margin-top: 8px; max-width: 64ch; line-height: 1.5; }
.pagehead__actions { display: flex; gap: 8px; flex: 0 0 auto; }

.section { margin-top: 32px; }
.section__head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.section__title { font-family: var(--font-display); font-size: 18px; font-weight: 500; color: var(--ink-900); font-variation-settings: "opsz" 24; }
.section__rule { flex: 1; height: 1px; background: var(--rule-subtle); }
.section__meta { font-family: var(--font-mono); font-size: 11px; color: var(--fg-3); }

/* ---- Cards ------------------------------------------------------------ */
.card {
  background: var(--cream-50);
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  padding: 18px 20px;
}
.card--flush { padding: 0; overflow: hidden; }
.card__head {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--rule-subtle);
}
.card__head h3 { font-family: var(--font-display); font-size: 15px; font-weight: 600; color: var(--ink-900); margin: 0; }
.card__head .card__meta { margin-left: auto; font-family: var(--font-mono); font-size: 11px; color: var(--fg-3); }

.grid { display: grid; gap: 16px; }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

/* ---- Metric block ----------------------------------------------------- */
.metric { display: flex; flex-direction: column; gap: 6px; }
.metric__label {
  font-family: var(--font-mono);
  font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--fg-3);
}
.metric__value {
  font-family: var(--font-display);
  font-size: 38px; line-height: 1; font-weight: 400; letter-spacing: -0.02em;
  color: var(--ink-900);
  font-variation-settings: "opsz" 60;
}
.metric__value.is-stop { color: var(--bindery-red-700); }
.metric__value.is-wait { color: var(--parchment-700); }
.metric__value.is-ok { color: var(--folio-green-700); }
.metric__foot { font-size: 12px; color: var(--fg-3); display: flex; align-items: center; gap: 6px; }
.delta { font-family: var(--font-mono); font-size: 11px; }
.delta.up { color: var(--folio-green-700); }
.delta.down { color: var(--bindery-red-700); }

/* ---- Status pills ----------------------------------------------------- */
.status {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 2px 9px 2px 7px;
  border-radius: var(--radius-pill);
  font-family: var(--font-ui);
  font-size: 11.5px; font-weight: 500;
  line-height: 1.5;
  white-space: nowrap;
  border: 1px solid transparent;
}
.status .dot { width: 6px; height: 6px; border-radius: 50%; flex: 0 0 auto; }
.status--ok    { background: var(--folio-green-100); color: var(--folio-green-900); border-color: color-mix(in srgb, var(--folio-green-700) 22%, transparent); }
.status--ok .dot { background: var(--folio-green-700); }
.status--wait  { background: var(--parchment-100); color: #6B4A1E; border-color: color-mix(in srgb, var(--parchment-700) 30%, transparent); }
.status--wait .dot { background: var(--parchment-700); }
.status--stop  { background: var(--bindery-red-100); color: var(--bindery-red-700); border-color: color-mix(in srgb, var(--bindery-red-500) 26%, transparent); }
.status--stop .dot { background: var(--bindery-red-500); }
.status--neutral { background: var(--cream-200); color: var(--fg-2); border-color: var(--rule-subtle); }
.status--neutral .dot { background: var(--ink-300); }

/* ---- Mono chips / tags ------------------------------------------------ */
.mono { font-family: var(--font-mono); }
.chip {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--fg-2);
  background: var(--cream-200);
  border: 1px solid var(--rule-subtle);
  padding: 1px 7px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
}
.chip--green { background: var(--folio-green-100); color: var(--folio-green-900); border-color: color-mix(in srgb, var(--folio-green-700) 18%, transparent); }
.chip--red { background: var(--bindery-red-100); color: var(--bindery-red-700); border-color: color-mix(in srgb, var(--bindery-red-500) 20%, transparent); }

/* Profile chip: type glyph + name (+ optional meta line) */
.profile-chip { display: inline-flex; align-items: center; gap: 7px; }
.profile-chip__type {
  width: 18px; height: 18px; border-radius: var(--radius-sm);
  display: inline-flex; align-items: center; justify-content: center;
  flex: 0 0 auto;
}
.profile-chip__type [data-lucide] { width: 12px; height: 12px; }
.profile-chip__type--agent { background: var(--folio-green-100); color: var(--folio-green-700); }
.profile-chip__type--human { background: var(--cream-200); color: var(--ink-700); }
.profile-chip__type--service_account,
.profile-chip__type--organization,
.profile-chip__type--external_system,
.profile-chip__type--unknown { background: var(--parchment-100); color: var(--parchment-700); }
.profile-chip__name { font-family: var(--font-mono); font-size: 12.5px; color: var(--ink-900); }
.profile-chip__meta { font-size: 11px; color: var(--fg-3); }

/* ---- Buttons ---------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-ui);
  font-size: 13px; font-weight: 500;
  padding: 7px 13px;
  border-radius: var(--radius-md);
  border: 1px solid var(--rule);
  background: var(--cream-50);
  color: var(--ink-900);
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--dur-hover) var(--ease), border-color var(--dur-hover) var(--ease);
}
.btn [data-lucide] { width: 15px; height: 15px; }
.btn:hover { background: var(--cream-200); }
.btn--primary { background: var(--folio-green-700); color: var(--cream-50); border-color: var(--folio-green-900); }
.btn--primary:hover { background: var(--folio-green-900); }
.btn--primary [data-lucide] { color: var(--cream-50); }
.btn--danger { background: var(--cream-50); color: var(--bindery-red-700); border-color: color-mix(in srgb, var(--bindery-red-500) 40%, transparent); }
.btn--danger:hover { background: var(--bindery-red-100); }
.btn--ghost { border-color: transparent; background: transparent; }
.btn--ghost:hover { background: var(--cream-200); }
.btn--sm { padding: 5px 10px; font-size: 12px; }
.btn--icon { padding: 7px; }
.btn--icon [data-lucide] { width: 16px; height: 16px; }

/* ---- Tables ----------------------------------------------------------- */
.table { width: 100%; border-collapse: collapse; font-size: 13px; }
.table th {
  text-align: left;
  font-family: var(--font-mono);
  font-size: 10.5px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--fg-3); font-weight: 500;
  padding: 10px 18px;
  border-bottom: 1px solid var(--rule);
  background: var(--cream-100);
  white-space: nowrap;
}
.table td { padding: 12px 18px; border-bottom: 1px solid var(--rule-subtle); color: var(--fg-1); vertical-align: middle; }
.table tr:last-child td { border-bottom: none; }
.table tbody tr { transition: background var(--dur-hover) var(--ease); }
.table tbody tr:hover { background: var(--cream-100); }
.table .num { font-family: var(--font-mono); text-align: right; }
.t-time { font-family: var(--font-mono); font-size: 11.5px; color: var(--fg-3); white-space: nowrap; }

/* ---- Misc ------------------------------------------------------------- */
.hairline { height: 1px; background: var(--rule-subtle); border: 0; margin: 0; }
.muted { color: var(--fg-3); }
.mt0 { margin-top: 0; }
.row { display: flex; align-items: center; gap: 10px; }
.spread { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.stack { display: flex; flex-direction: column; }
.gap4 { gap: 4px; } .gap6 { gap: 6px; } .gap8 { gap: 8px; } .gap12 { gap: 12px; }

.note {
  font-family: var(--font-mono);
  font-size: 11px; color: var(--fg-3);
  display: flex; align-items: center; gap: 6px;
}
.note [data-lucide] { width: 13px; height: 13px; }

/* ---- Utilities --------------------------------------------------------
   Replacements for what used to be inline style="" attributes. Templates
   carry no inline CSS: compose these (plus component classes) instead.   */

/* Type scale */
.fs10 { font-size: 10px; }   .fs105 { font-size: 10.5px; }
.fs11 { font-size: 11px; }   .fs115 { font-size: 11.5px; }
.fs12 { font-size: 12px; }   .fs125 { font-size: 12.5px; }
.fs13 { font-size: 13px; }   .fs135 { font-size: 13.5px; }
.fs14 { font-size: 14px; }   .fs145 { font-size: 14.5px; }
.fs15 { font-size: 15px; }   .fs155 { font-size: 15.5px; }
.fw400 { font-weight: 400; } .fw500 { font-weight: 500; } .fw600 { font-weight: 600; }
.mono { font-family: var(--font-mono); }
.lh14 { line-height: 1.4; } .lh15 { line-height: 1.5; } .lh16 { line-height: 1.6; }
/* Display-face text (card/section titles) — pair with an .fs* size. */
.tdisplay { font-family: var(--font-display); color: var(--ink-900); }

/* Color */
.c-accent { color: var(--accent); }
.c-ink { color: var(--ink-900); }
.c-fg1 { color: var(--fg-1); } .c-fg2 { color: var(--fg-2); }
.c-fg3 { color: var(--fg-3); } .c-fg4 { color: var(--fg-4); }
.c-ok { color: var(--folio-green-700); }
.c-warn { color: var(--parchment-700); }
.c-stop { color: var(--bindery-red-500); }
.c-stop-deep { color: var(--bindery-red-700); }

/* Spacing */
.mt2 { margin-top: 2px; }  .mt4 { margin-top: 4px; }   .mt5 { margin-top: 5px; }
.mt6 { margin-top: 6px; }  .mt8 { margin-top: 8px; }   .mt10 { margin-top: 10px; }
.mt12 { margin-top: 12px; } .mt14 { margin-top: 14px; } .mt16 { margin-top: 16px; }
.mt20 { margin-top: 20px; } .mt24 { margin-top: 24px; }
.mb0 { margin-bottom: 0; } .mb2 { margin-bottom: 2px; } .mb4 { margin-bottom: 4px; }
.mb6 { margin-bottom: 6px; } .mb8 { margin-bottom: 8px; } .mb10 { margin-bottom: 10px; }
.mb12 { margin-bottom: 12px; } .mb16 { margin-bottom: 16px; } .mb18 { margin-bottom: 18px; }
.mb20 { margin-bottom: 20px; } .mb24 { margin-bottom: 24px; }
.m0 { margin: 0; }
.ml-auto { margin-left: auto; }
.p0 { padding: 0; } .p18 { padding: 18px; }

/* Layout */
.w100 { width: 100%; }
.flex1 { flex: 1; min-width: 0; }
.minw0 { min-width: 0; }
.wrap { flex-wrap: wrap; }
.ai-start { align-items: flex-start; } .ai-end { align-items: flex-end; }
.jc-end { justify-content: flex-end; } .jc-center { justify-content: center; }
.tr { text-align: right; } .tc { text-align: center; }
.inline { display: inline; } .iblock { display: inline-block; } .block { display: block; }
.nowrap { white-space: nowrap; }
.ellipsis { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* Icon sizing (lucide keeps the class on the generated <svg>) */
.ic12 { width: 12px; height: 12px; } .ic13 { width: 13px; height: 13px; }
.ic14 { width: 14px; height: 14px; } .ic15 { width: 15px; height: 15px; }
.ic16 { width: 16px; height: 16px; } .ic18 { width: 18px; height: 18px; }
.ic22 { width: 22px; height: 22px; } .ic26 { width: 26px; height: 26px; }
.ic28 { width: 28px; height: 28px; }

/* List rows: hairline between rows, none after the last */
.listrow { padding: 8px 0; }
.listrow--lg { padding: 13px 18px; }
.listrow--xl { padding: 14px 18px; }
.listrow:not(:last-child),
.listrow--lg:not(:last-child),
.listrow--xl:not(:last-child) { border-bottom: 1px solid var(--rule-subtle); }

/* Flash messages (also swapped OOB into #flash by HTMX responses) */
.flash { padding: 10px 14px; display: flex; align-items: center; gap: 10px; }
.flash--error { border-color: color-mix(in srgb, var(--bindery-red-500) 40%, transparent); }
.flash--success { border-color: color-mix(in srgb, var(--folio-green-700) 36%, transparent); }

/* Data-driven widths (e.g. outcome meter): the template sets --w, CSS renders it */
.seg { width: var(--w, 0%); }
.seg--ok { background: var(--folio-green-700); }
.seg--wait { background: var(--parchment-700); }
.seg--gold { background: #C39A52; }
.seg--stop { background: var(--bindery-red-500); }

/* ── Component classes: actions_region ── */
.act-valign-n2 { vertical-align: -2px; }
.act-obs-indent { align-items: center; padding-left: 22px; }
.act-obs-note { margin: 0 0 0 22px; }
.act-col-26 { width: 26%; }
.act-col-16 { width: 16%; }
.act-col-36px { width: 36px; }

/* ── Component classes: integrations_region ── */
.intg-secret-card { border-color: color-mix(in srgb, var(--folio-green-700) 36%, transparent); }
.intg-secret-code { display: block; padding: 10px; background: var(--cream-100); border-radius: var(--radius-md); word-break: break-all; }
.intg-url-input { min-width: 320px; }
.intg-events-label { margin: 8px 0 4px; }
.intg-event-label { min-width: 220px; }
.intg-summary-pointer { cursor: pointer; }
.intg-custom-input { max-width: 480px; }
.intg-tip-margin { margin: 6px 0 0; }
.intg-key-note { margin-left: 8px; }

/* ── Component classes: governance_region ── */
.gv-lock-card { border-color: color-mix(in srgb, var(--bindery-red-500) 26%, transparent); }
.gv-card-head-pb12 { padding: 0 0 12px; }
.gv-valign-n2 { vertical-align: -2px; }
.gv-inline-flex-gap6 { display: inline-flex; gap: 6px; }

/* ── Component classes: profiles_region ── */
.prfl-summary-pointer { cursor: pointer; }
.prfl-prop-note { margin: 6px 0; }
.prfl-prop-name { min-width: 160px; }
.prfl-prop-value { min-width: 200px; }
.prfl-budget-list { font-size: 12.5px; line-height: 1.7; margin: 0; padding-left: 18px; }
.prfl-rel-choice { display: inline-flex; align-items: center; gap: 5px; cursor: pointer; }

/* Extended icon sizes */
.ic17 { width: 17px; height: 17px; }
.ic20 { width: 20px; height: 20px; }
.ic24 { width: 24px; height: 24px; }

/* Extended type scale */
.fs16 { font-size: 16px; }

/* Extended spacing utilities */
.mb5 { margin-bottom: 5px; }
.mb7 { margin-bottom: 7px; }
.mb14 { margin-bottom: 14px; }
