@charset "UTF-8";
/* =========================================================
   1) PRIMITIVES (brand + states) — stable across themes
   ========================================================= */
:root {
  /* Brand */
  --brand: #1266B0;
  --brand-2: #ED6A34;
  /* States */
  --success: #16a34a;
  --warning: #f59e0b;
  --danger: #dc2626;
  --info: #0ea5e9;
  /* Optional subtle/soft tints for backgrounds (used in chips/alerts) */
  --success-soft: rgba(22, 163, 74, 0.10);
  --warning-soft: rgba(245, 158, 11, 0.10);
  --danger-soft: rgba(220, 38, 38, 0.10);
  --info-soft: rgba(14, 165, 233, 0.10);
  --brand-soft: rgba(18, 102, 176, 0.10);
  /* ======================================================
   2) THEME TOKENS (light & dark source values)
   ====================================================== */
  /* Light */
  --text-light: #0f172a;
  --muted-light: #475569;
  --bg-light: #f8fafc;
  --bg-2-light: #eef2ff;
  --line-light: #e9ebee;
  --card-light: #fefefe;
  --border-light: #e4e6ea;
  --ring-light: #d5d2fd;
  --rail-light: #ffffff;
  /* Dark */
  --text-dark: #cbd5e1;
  --muted-dark: #a1abc1;
  --bg-dark: #1a202d;
  --bg-2-dark: #1a2634;
  --line-dark: #2d3748;
  --card-dark: #2a2d37;
  --border-dark: #2f3748;
  --ring-dark: #4a5066;
  --rail-dark: #1e2533;
  /* ======================================================
   3) ACTIVE (semantic) TOKENS — default to LIGHT
   ====================================================== */
  --text: var(--text-light);
  --muted: var(--muted-light);
  --bg: var(--bg-light);
  --bg-2: var(--bg-2-light);
  --line: var(--line-light);
  --card: var(--card-light);
  --border: var(--border-light);
  --ring: var(--ring-light);
  --rail: var(--rail-light);
  /* Convenience: complementary background for popover/tooltips, etc. */
  --bg-comp: var(--bg-dark);
}

/* =========================================================
   4) AUTO THEME (match system) — flips ACTIVE tokens to DARK
   ========================================================= */
@media (prefers-color-scheme: dark) {
  :root {
    --text: var(--text-dark);
    --muted: var(--muted-dark);
    --bg: var(--bg-dark);
    --bg-2: var(--bg-2-dark);
    --line: var(--line-dark);
    --card: var(--card-dark);
    --border: var(--border-dark);
    --ring: var(--ring-dark);
    --rail: var(--rail-dark);
    --bg-comp: var(--bg-light);
  }
}
/* =========================================================
   5) MANUAL OVERRIDES (data-theme wins over media query)
   ========================================================= */
html[data-theme=light] {
  --text: var(--text-light);
  --muted: var(--muted-light);
  --bg: var(--bg-light);
  --bg-2: var(--bg-2-light);
  --line: var(--line-light);
  --card: var(--card-light);
  --border: var(--border-light);
  --ring: var(--ring-light);
  --rail: var(--rail-light);
  --bg-comp: var(--bg-dark);
}

html[data-theme=dark] {
  --text: var(--text-dark);
  --muted: var(--muted-dark);
  --bg: var(--bg-dark);
  --bg-2: var(--bg-2-dark);
  --line: var(--line-dark);
  --card: var(--card-dark);
  --border: var(--border-dark);
  --ring: var(--ring-dark);
  --rail: var(--rail-dark);
  --bg-comp: var(--bg-light);
}

/* ================= BASE STYLES ================= */
html, body {
  height: 100%;
}

body {
  min-height: 100svh;
  overflow-y: auto;
  overscroll-behavior-y: auto;
}

body {
  color: var(--text);
  background: var(--bg);
  font-family: Inter, SF Pro, Segoe UI, Roboto, Oxygen, Ubuntu, Helvetica Neue, Helvetica, Arial, sans-serif;
  position: relative;
}

/* ================= FOCUS UTILITIES ================= */
:focus {
  outline: none;
}

:focus-visible {
  outline: none;
  /* use brand/ring instead of hardcoded blue */
  box-shadow: 0 0 0 2px color-mix(in oklab, var(--brand), transparent 30%), 0 0 0 4px color-mix(in oklab, var(--ring), transparent 40%);
}

@supports not selector(:focus-visible) {
  .keyboard-navigation :focus {
    outline: 2px solid color-mix(in oklab, var(--brand), transparent 25%);
    outline-offset: 2px;
  }
}
/* ================= MARGIN PADDING ================= */
.m-0 {
  margin: 0;
}

.mx-0 {
  margin-left: 0;
  margin-right: 0;
}

.my-0 {
  margin-top: 0;
  margin-bottom: 0;
}

.mt-0 {
  margin-top: 0;
}

.mr-0 {
  margin-right: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.ml-0 {
  margin-left: 0;
}

.p-0 {
  padding: 0;
}

.px-0 {
  padding-left: 0;
  padding-right: 0;
}

.py-0 {
  padding-top: 0;
  padding-bottom: 0;
}

.pt-0 {
  padding-top: 0;
}

.pr-0 {
  padding-right: 0;
}

.pb-0 {
  padding-bottom: 0;
}

.pl-0 {
  padding-left: 0;
}

.m-1 {
  margin: 0.5rem;
}

.mx-1 {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.my-1 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.mt-1 {
  margin-top: 0.5rem;
}

.mr-1 {
  margin-right: 0.5rem;
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.ml-1 {
  margin-left: 0.5rem;
}

.p-1 {
  padding: 0.5rem;
}

.px-1 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.py-1 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.pt-1 {
  padding-top: 0.5rem;
}

.pr-1 {
  padding-right: 0.5rem;
}

.pb-1 {
  padding-bottom: 0.5rem;
}

.pl-1 {
  padding-left: 0.5rem;
}

.m-2 {
  margin: 1rem;
}

.mx-2 {
  margin-left: 1rem;
  margin-right: 1rem;
}

.my-2 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mr-2 {
  margin-right: 1rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.ml-2 {
  margin-left: 1rem;
}

.p-2 {
  padding: 1rem;
}

.px-2 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.py-2 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.pt-2 {
  padding-top: 1rem;
}

.pr-2 {
  padding-right: 1rem;
}

.pb-2 {
  padding-bottom: 1rem;
}

.pl-2 {
  padding-left: 1rem;
}

.m-3 {
  margin: 1.5rem;
}

.mx-3 {
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

.my-3 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.mt-3 {
  margin-top: 1.5rem;
}

.mr-3 {
  margin-right: 1.5rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.ml-3 {
  margin-left: 1.5rem;
}

.p-3 {
  padding: 1.5rem;
}

.px-3 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.py-3 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.pt-3 {
  padding-top: 1.5rem;
}

.pr-3 {
  padding-right: 1.5rem;
}

.pb-3 {
  padding-bottom: 1.5rem;
}

.pl-3 {
  padding-left: 1.5rem;
}

.m-4 {
  margin: 2rem;
}

.mx-4 {
  margin-left: 2rem;
  margin-right: 2rem;
}

.my-4 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.mt-4 {
  margin-top: 2rem;
}

.mr-4 {
  margin-right: 2rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.ml-4 {
  margin-left: 2rem;
}

.p-4 {
  padding: 2rem;
}

.px-4 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.py-4 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.pt-4 {
  padding-top: 2rem;
}

.pr-4 {
  padding-right: 2rem;
}

.pb-4 {
  padding-bottom: 2rem;
}

.pl-4 {
  padding-left: 2rem;
}

.container {
  max-width: 1200px;
  margin: auto;
}

/* ================= BUTTONS ================= */
.btn {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.2;
  cursor: pointer;
  border: 1px solid transparent;
  /* no transform animation needed now */
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease, filter 0.15s ease;
  -webkit-tap-highlight-color: transparent;
  /* no translate on active */
  /* ===== Variants ===== */
}
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  box-shadow: none;
}
.btn:active {
  transform: none;
}
.btn.primary {
  color: #fff;
  background: var(--brand);
  border: 0;
  /* no shadow on hover; just color shift */
}
.btn.primary:hover {
  background: color-mix(in srgb, var(--brand) 88%, #000);
}
.btn.primary:active {
  background: color-mix(in srgb, var(--brand) 78%, #000);
}
.btn.success {
  color: #fff;
  background: var(--success);
  border: 0;
  /* no shadow on hover; just color shift */
}
.btn.success:hover {
  background: color-mix(in srgb, var(--success) 88%, #000);
}
.btn.success:active {
  background: color-mix(in srgb, var(--success) 78%, #000);
}
.btn.light {
  color: var(--text);
  background: var(--card);
  border: 1px solid var(--border);
}
.btn.light:hover {
  /* subtle tonal shift, no shadow */
  background: color-mix(in srgb, var(--card) 85%, var(--bg));
  border-color: color-mix(in srgb, var(--muted) 30%, var(--border));
}
.btn.light:active {
  background: color-mix(in srgb, var(--card) 75%, var(--bg));
  border-color: color-mix(in srgb, var(--muted) 45%, var(--border));
}
.btn.dark {
  color: #fff;
  background: var(--text);
  border: 1px solid color-mix(in srgb, var(--text) 80%, black);
}
.btn.dark:hover {
  background: color-mix(in srgb, var(--text) 85%, #000);
  border-color: color-mix(in srgb, var(--text) 65%, black);
}
.btn.dark:active {
  background: color-mix(in srgb, var(--text) 75%, #000);
  border-color: color-mix(in srgb, var(--text) 70%, black);
}
.btn.danger {
  color: #fff;
  background: var(--danger);
  border: 1px solid color-mix(in srgb, var(--danger) 80%, black);
}
.btn.danger:hover {
  background: color-mix(in srgb, var(--danger) 88%, #000);
  border-color: color-mix(in srgb, var(--danger) 65%, black);
}
.btn.danger:active {
  background: color-mix(in srgb, var(--danger) 78%, #000);
  border-color: color-mix(in srgb, var(--danger) 70%, black);
}

/* Small button helper (used across modules) */
.btn.small {
  padding: 6px 10px;
  font-size: 12px;
  border-radius: 10px;
  line-height: 1.1;
}

.rail-btn {
  -webkit-tap-highlight-color: transparent;
  display: inline-grid;
  place-items: center;
  background: transparent;
  border-radius: 10px;
  border: 0;
  width: 40px;
  height: 40px;
  background: var(--rail);
  color: var(--text);
  cursor: pointer;
}
.rail-btn:hover {
  background: color-mix(in srgb, var(--card) 90%, var(--bg-comp));
}

/* ================= THEME TOGGLE ================= */
.theme-toggle {
  display: grid;
  place-items: center;
  border-radius: 10px;
  width: 40px;
  height: 40px;
  background: var(--rail);
  color: var(--text);
  border: 0;
  cursor: pointer;
  transition: transform 0.06s ease, filter 0.15s ease, background-color 0.15s ease;
  z-index: 2;
}
.theme-toggle .sun, .theme-toggle .moon {
  font-size: 18px;
  line-height: 1;
}
.theme-toggle[data-state=light] .sun {
  display: none;
}
.theme-toggle[data-state=dark] .moon {
  display: none;
}
.theme-toggle:hover {
  background: color-mix(in srgb, var(--card) 90%, var(--bg-comp));
}

.round {
  border-radius: 999px;
}

form {
  display: grid;
  gap: 1rem;
}
form label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
}
form input, form select {
  width: 100%;
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--card) 80%, transparent);
  color: var(--text);
  border-radius: 0.8rem;
  padding: 12px 14px;
  font-size: 15px;
  line-height: 1.3;
  transition: border-color 0.15s, box-shadow 0.15s, background-color 0.15s;
}
form input::placeholder, form select::placeholder {
  color: color-mix(in srgb, var(--muted) 65%, transparent);
}
form input:hover, form select:hover {
  border-color: color-mix(in srgb, var(--muted) 35%, var(--border));
}
form input:disabled, form select:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
form select {
  cursor: pointer;
}
form .flash {
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 1rem;
  line-height: 1.35;
  background: var(--danger-soft, color-mix(in srgb, var(--danger) 12%, transparent));
  border: 1px solid color-mix(in srgb, var(--danger) 40%, transparent);
  color: var(--danger);
}

/* ================= INPUTS (GLOBAL) ================= */
.input {
  width: 100%;
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--card) 80%, transparent);
  color: var(--text);
  border-radius: 0.8rem;
  padding: 10px 12px;
  font-size: 14px;
  line-height: 1.3;
  transition: border-color 0.15s, box-shadow 0.15s, background-color 0.15s;
}

.input::placeholder {
  color: color-mix(in srgb, var(--muted) 65%, transparent);
}

.input:hover {
  border-color: color-mix(in srgb, var(--muted) 35%, var(--border));
}

.input:focus-visible {
  box-shadow: 0 0 0 2px color-mix(in oklab, var(--brand), transparent 30%), 0 0 0 4px color-mix(in oklab, var(--ring), transparent 40%);
}

.input:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ================= BASE ================= */
.layout {
  height: 100svh;
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 0;
  overflow-y: auto;
  overscroll-behavior-y: auto;
}

.rail {
  position: sticky;
  top: 0;
  display: grid;
  width: 100%;
  padding: 0.5rem;
  grid-template-rows: 1fr auto;
  gap: 6px;
  align-items: start;
  justify-items: center;
  background: var(--rail);
  border-right: 1px solid var(--border);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  box-shadow: inset -1px 0 0 rgba(255, 255, 255, 0.06);
  z-index: 70;
  height: 100svh;
}

.sidebar {
  position: sticky;
  top: 0;
  display: grid;
  align-self: start;
  grid-template-rows: 1fr auto;
  height: 100svh;
  background: var(--rail);
  border-right: 1px solid var(--border);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  box-shadow: inset -1px 0 0 rgba(255, 255, 255, 0.06);
  z-index: 60;
}

.side-section {
  overflow-y: scroll;
  min-width: 200px;
}

body.desktop-collapsed .sidebar {
  width: 0;
  padding-left: 0;
  padding-right: 0;
  border-right-color: transparent;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
}

/* ------------------------------------------------------------
   Sidebar footer: current user card (above Settings/Logout)
   ------------------------------------------------------------ */
.sidebar-footer {
  padding: 0.75rem 0.75rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.side-user {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
  border-radius: 0.75rem;
}

.side-user__avatar {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.side-user__avatar svg {
  width: 20px;
  height: 20px;
  opacity: 0.9;
}

.side-user__meta {
  min-width: 0;
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.side-user__name {
  font-size: 0.95rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.side-user__role {
  margin-top: 0.15rem;
  font-size: 0.78rem;
  opacity: 0.75;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Optional: make footer links look consistent under the card */
.sidebar-footer .nav-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.6rem;
  border-radius: 0.65rem;
  text-decoration: none;
}
.sidebar-footer .nav-link:hover {
  background: rgba(255, 255, 255, 0.06);
}

/* ================= REDUCED MOTION ================= */
@media (prefers-reduced-motion: reduce) {
  .sidebar, .side-nav a {
    transition: none !important;
  }
}
/* ================= TREE MENU ================= */
.tree-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.tree-item {
  margin: 2px 0;
  padding-right: 6px;
}

/* Tree link style */
.tree-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  color: var(--text);
  background: transparent;
  cursor: pointer;
  user-select: none;
  transition: background 0.15s ease, color 0.15s ease;
}
.tree-link:hover {
  background: var(--bg);
}
.tree-link.is-active, .tree-link[aria-current=page] {
  color: var(--brand);
}
.tree-link .label {
  flex: 1;
  font-weight: 600;
}

/* Chevron for expandable items */
.chevron {
  width: 16px;
  height: 16px;
  margin-left: auto;
  opacity: 0.6;
  transition: transform 0.2s ease;
}

/* rotate chevron when open */
.tree-item[open] > .tree-link .chevron {
  transform: rotate(90deg);
}

/* hide/show submenu */
.tree-submenu {
  display: none;
  list-style: none;
  margin-left: 12px;
  padding-left: 12px;
  border-left: 1px solid var(--line);
  overflow-y: hidden;
  margin-top: 0;
  margin-bottom: 0;
}

.tree-item[open] > .tree-submenu {
  display: block;
  margin-top: 4px;
  margin-bottom: 4px;
}

/* optional: remove default summary marker */
summary.tree-link {
  list-style: none;
}

summary.tree-link::-webkit-details-marker {
  display: none;
}

hr {
  border: 0 none;
  height: 1px;
  background-color: var(--border);
  color: var(--border);
  margin: 8px 0;
}

/* ================= SIDEBAR USER ================= */
.side-user {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 10px;
  margin: 0 0 8px;
  border-radius: 12px;
}

.side-avatar {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: color-mix(in srgb, var(--brand) 12%, var(--card));
  border: 1px solid color-mix(in srgb, var(--brand) 22%, var(--border));
  color: var(--brand);
  flex: 0 0 auto;
}

.side-user-meta {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.side-user-name {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.side-user-role {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  text-transform: capitalize;
}

/* ================= COMPONENTS ================= */
.card {
  width: 100%;
  padding: 22px 22px 24px;
  border-radius: 16px;
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: 0 5px 15px rgba(2, 6, 23, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.right-top {
  position: fixed;
  top: 12px;
  right: 12px;
  z-index: 100;
}

.title {
  font-size: clamp(20px, 2.4vw, 24px);
  font-weight: 600;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--border);
}

.full-width {
  width: 100%;
}

.full-height {
  height: 100%;
}

.main-container {
  height: 100svh;
  min-width: 300px;
}

.content {
  height: 100svh;
  overflow-y: auto;
}

.max-desktop {
  max-width: 1280px;
}

.content-padding {
  padding: 1rem;
}

.capitalize {
  text-transform: capitalize;
}

.card-grid {
  display: grid;
  gap: 1.5rem;
}

.text-right {
  text-align: right !important;
}

/* ================= MODAL (local) ================= */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 1000;
}

.modal.active {
  display: block;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.modal-content {
  position: relative;
  z-index: 1;
  width: min(520px, 92vw);
  margin: 8vh auto;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px 18px 20px;
  box-shadow: 0 5px 15px rgba(2, 6, 23, 0.35);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
}

.modal-header h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
}

.modal-body {
  margin: 2rem 0rem;
}

.modal-actions {
  display: flex;
  gap: 1rem;
  justify-content: end;
}

.modal-close {
  -webkit-tap-highlight-color: transparent;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--text);
  cursor: pointer;
}

.modal-close:hover {
  background: color-mix(in srgb, var(--card) 90%, var(--bg));
}

/* Modal messages should respect newlines (\n) */
#confirm-message,
#notice-message {
  white-space: pre-wrap;
}

.color-edit,
.color-success,
.color-delete {
  -webkit-tap-highlight-color: transparent;
  background: transparent;
  border: 0;
  color: var(--muted);
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: background-color 0.15s ease, color 0.15s ease, filter 0.15s ease;
  flex-shrink: 0;
}
.color-edit:active,
.color-success:active,
.color-delete:active {
  transform: none;
}

.color-edit:hover {
  background: color-mix(in srgb, var(--brand) 12%, transparent);
  color: var(--brand);
}

.color-success:hover {
  background: color-mix(in srgb, var(--success) 12%, transparent);
  color: var(--brand);
}

.color-delete:hover {
  background: color-mix(in srgb, var(--danger) 12%, transparent);
  color: var(--danger);
}

.menu-divider-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  user-select: none;
}
.menu-divider-label::before {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  background: var(--border);
  min-width: 12px;
}
.menu-divider-label span {
  flex: 0 0 auto;
  white-space: nowrap;
  color: var(--border);
}
