/* ============================================================
   base.css — Structural layout styles
   Derived from the Armoredillo app.css brand shell.
   All colors reference CSS variables defined in hub.css.
   ============================================================ */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', Helvetica, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, var(--bg-top) 0%, var(--bg) 200px);
  min-height: 100vh;
}

a, button, input, select, textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

/* ─── Accessibility ──────────────────────────────────────────── */
.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  background: var(--surface);
  color: var(--text);
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  text-decoration: none;
  z-index: 1000;
  font-size: 14px;
}

.skip-link:focus {
  top: 16px;
}

/* ─── Layout Shell ───────────────────────────────────────────── */
.layout {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ─── Topbar ─────────────────────────────────────────────────── */
.topbar {
  height: var(--topbar-height);
  background: var(--topbar-bg);
  color: var(--topbar-text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--content-padding);
  border-bottom: 1px solid var(--topbar-border);
  flex-shrink: 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1 1 auto;
  min-width: 0;
}

.logo {
  /* Constrained to topbar height so SVG logo never overflows */
  max-height: 36px;
  width: auto;
  object-fit: contain;
  display: block;
}

.app-version {
  font-size: 11px;
  font-weight: 500;
  opacity: 0.65;
  letter-spacing: 0.5px;
  color: var(--topbar-text);
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.topbar-username {
  font-size: 0.82rem;
  color: var(--topbar-text);
  margin-right: 6px;
}

.icon-btn {
  background: transparent;
  border: none;
  border-radius: 6px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--topbar-text);
  font-size: 16px;
  transition: background 0.15s ease;
  padding: 0;
}

.icon-btn:hover {
  background: rgba(255, 255, 255, 0.12);
}

.icon-btn svg {
  display: block;
}

/*.menu-toggle-btn {
  margin-right: 4px;
}*/

.menu-toggle-icon {
  width: 18px;
  height: 18px;
  display: block;
}

.icon-btn#notificationBtn {
  position: relative;
}

.icon-btn.has-unread {
  background: rgba(255, 255, 255, 0.16);
}

.notif-badge {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: #ef4444;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  display: none;
  align-items: center;
  justify-content: center;
}

/* ─── Main Wrapper ───────────────────────────────────────────── */
.main {
  flex: 1;
  display: flex;
  min-height: calc(100vh - var(--topbar-height));
}

/* ─── Sidebar ────────────────────────────────────────────────── */
.sidebar {
  width: 220px;
  background: var(--sidebar-bg);
  padding-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-right: 1px solid var(--border);
  flex-shrink: 0;
}

.side-block {
  background: transparent;
  border: none;
  padding: 18px 24px;
  font-weight: 700;
  font-size: 13px;
  color: var(--sidebar-text);
  text-decoration: none;
  text-align: left;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  transition: background 0.15s ease, color 0.15s ease;
  border-right: 3px solid transparent;
}

.side-label {
  white-space: nowrap;
}

.side-icon-wrap {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.side-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: none;
}

[data-theme="light"] .side-icon-light {
  display: inline-block;
}

[data-theme="dark"] .side-icon-light {
  display: none;
}

[data-theme="dark"] .side-icon-dark {
  display: inline-block;
}

[data-theme="light"] .side-icon-dark {
  display: none;
}

.side-block:hover {
  background: var(--sidebar-hover);
}

.side-block.active {
  background: var(--sidebar-active-bg);
  color: var(--sidebar-active-text);
  border-right-color: var(--primary);
}

.side-subnav {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 0 0 4px 12px;
}

.side-subnav.is-open {
  display: flex;
}

.side-block.sub {
  padding: 10px 24px;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.3px;
}

.sidebar.collapsed {
  width: 72px;
  overflow-x: hidden;
}

.sidebar.collapsed .side-label {
  display: none;
}

.sidebar.collapsed .side-block {
  justify-content: center;
  padding-left: 10px;
  padding-right: 10px;
}

.sidebar.collapsed .side-subnav {
  display: none !important;
}

/* ─── Content Area ───────────────────────────────────────────── */
.content {
  flex: 1;
  padding: var(--content-padding);
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 0;
  overflow-y: auto;
}

/* ─── Page Title ─────────────────────────────────────────────── */
.page-title {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.8px;
  color: var(--text);
  margin: 4px 0;
}

/* Topbar brand title stays on the dark topbar in all themes.
   Shrinks fluidly so "SMART SAFE HUB" stays on one line. */
.topbar-left .page-title {
  color: var(--topbar-text) !important;
  margin: 0;
  line-height: 1.15;
  white-space: nowrap;
  flex: 1 1 auto;
  min-width: 0;
  font-size: clamp(12px, 2.2vw + 10px, 22px);
  letter-spacing: 0.6px;
}

/* ─── Content Card ───────────────────────────────────────────── */
.content-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

/* ─── Buttons ────────────────────────────────────────────────── */
.btn {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  background: var(--surface);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}

.btn:hover {
  background: var(--surface-soft);
}

.btn-light {
  background: var(--surface-soft);
  border-color: var(--border);
  color: var(--text);
}

.btn-light:hover {
  background: var(--surface-accent);
}

.btn-view {
  background: var(--surface-soft);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 5px 14px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 600;
}

.btn-view:hover {
  background: var(--primary-soft);
  border-color: var(--primary);
  color: var(--primary);
}

.btn-escalate {
  background: var(--danger);
  color: #fff;
  border-color: var(--danger);
}

.btn-escalate:hover {
  opacity: 0.88;
}

/* ─── Table ──────────────────────────────────────────────────── */
.table-wrap {
  overflow-x: auto;
  overflow-y: hidden;
}

.table-wrap--scrollable {
  overflow-y: auto;
  max-height: calc(100vh - 340px);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
  min-width: 680px;
}

.data-table th,
.data-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.data-table thead th {
  position: sticky;
  top: 0;
  background: var(--surface-soft);
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  z-index: 1;
}

.data-table tbody tr {
  transition: background 0.1s ease;
}

.data-table tbody tr:hover {
  background: var(--surface-accent);
}

.data-table tbody tr.is-selected {
  background: var(--primary-soft) !important;
}

.align-right {
  text-align: right;
}

/* ─── Modal ──────────────────────────────────────────────────── */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 50;
}

.modal.is-open {
  display: flex;
  pointer-events: auto;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.modal-panel {
  position: relative;
  background: var(--surface);
  border-radius: var(--radius-lg);
  width: min(900px, 96vw);
  padding: 18px 20px 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  z-index: 1;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0;
  padding: 16px 20px 12px;
  border-bottom: 1px solid var(--border);
}

.modal-header h2 {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
}

.modal-header h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
}

.modal-close {
  border: none;
  background: transparent;
  font-size: 20px;
  cursor: pointer;
  color: var(--muted);
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 6px;
}

.modal-close:hover {
  background: var(--surface-soft);
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.modal-content {
  position: relative;
  background: var(--surface);
  border-radius: var(--radius-lg);
  width: min(480px, 96vw);
  padding: 0;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  z-index: 1;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-body {
  padding: 16px 20px 20px;
}

.modal-body label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}

.modal-body input[type="password"],
.modal-body input[type="text"] {
  width: 100%;
  box-sizing: border-box;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface-soft);
  color: var(--text);
  margin-bottom: 12px;
}

.modal-actions {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  margin-top: 16px;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: opacity 0.15s;
}

.btn-primary:hover { opacity: 0.88; }
.btn-primary:disabled { opacity: 0.5; cursor: not-allowed; }

.btn-secondary {
  background: var(--surface-soft);
  color: var(--text);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: background-color 0.15s;
}

.btn-secondary:hover {
  background: var(--hover-light, var(--surface-soft));
}

/* ─── Toast ──────────────────────────────────────────────────── */
.app-toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--text);
  color: var(--surface);
  padding: 10px 16px;
  border-radius: 8px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 1200;
  font-size: 13px;
  font-weight: 500;
  pointer-events: none;
}

.app-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* ─── Hidden utility ─────────────────────────────────────────── */
[hidden] {
  display: none !important;
}

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1366px) {
  .logo {
    max-height: 32px;
    width: auto;
    height: 54px;
  }

  .sidebar {
    width: 190px;
  }

  .side-block {
    padding: 14px 18px;
    font-size: 12px;
  }

  .page-title {
    font-size: 20px;
  }
}

@media (max-width: 1080px) {
  .sidebar {
    width: 170px;
  }

  .side-block {
    padding: 13px 16px;
  }
}

@media (max-width: 768px) {
  .main {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding-top: 0;
    gap: 0;
  }

  .side-block {
    flex: 1 1 100px;
    padding: 10px 8px;
    font-size: 11px;
    text-align: center;
    border-right: none;
    border-bottom: 3px solid transparent;
  }

  .side-block.active {
    border-right: none;
    border-bottom-color: var(--primary);
  }

  .content {
    padding: 14px;
    gap: 12px;
  }

  .topbar-username {
    display: none;
  }

  .table-wrap--scrollable {
    max-height: none;
    overflow: visible;
  }

  .data-table {
    min-width: 0;
  }

  .section-head {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    text-align: left;
  }

  .section-head > div:first-child {
    flex: 1 1 auto;
    min-width: 0;
    text-align: left;
  }

  .section-title,
  .section-note {
    text-align: left;
  }

  .section-tools {
    width: auto;
    margin-left: auto;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
    align-self: flex-start;
  }

  .app-toast {
    left: 16px;
    right: 16px;
    bottom: 16px;
    text-align: center;
  }
}

/* ─── Mobile utilities (Phase 34) ─────────────────────────────── */
.touch-target-large {
  min-width: 44px;
  min-height: 44px;
}

.mobile-only {
  display: none !important;
}

.desktop-only {
  display: revert;
}

.mobile-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-gap-sm { gap: 8px; }
.mobile-gap-md { gap: 16px; }

@media (max-width: 768px) {
  .mobile-only {
    display: revert !important;
  }

  .desktop-only {
    display: none !important;
  }
}

/* ═══════════════════════════════════════════════════════════════
   Phase 35 — Mobile Drawer Navigation
   ═══════════════════════════════════════════════════════════════ */

/* Drawer overlay (backdrop). Dim only — no backdrop-filter blur
   (Chromium/Edge can ghost/mirror content under blur). */
.mobile-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  z-index: 998;
  transition: background 0.3s ease;
  pointer-events: none;
}

.mobile-drawer-overlay.open {
  background: rgba(0, 0, 0, 0.5);
  pointer-events: auto;
}

/* Mobile drawer panel */
.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  max-width: 85vw;
  height: 100vh;
  background: var(--surface);
  border-right: 1px solid var(--border);
  box-shadow: 2px 0 8px rgba(0, 0, 0, 0.1);
  z-index: 999;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.mobile-drawer.open {
  transform: translateX(0);
}

/* Drawer header */
.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  position: sticky;
  top: 0;
  z-index: 1;
}

.mobile-drawer-header span {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text);
}

.mobile-drawer-close {
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  color: var(--text);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  transition: background 0.2s;
}

.mobile-drawer-close:hover {
  background: var(--hover-bg);
}

/* Drawer body */
.mobile-drawer-body {
  flex: 1;
  padding: 8px 0;
  overflow-y: auto;
}

/* Drawer items */
.mobile-drawer-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  min-height: 48px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  transition: background 0.2s;
  cursor: pointer;
  border: none;
  width: 100%;
  background: transparent;
  text-align: left;
}

.mobile-drawer-item:hover {
  background: var(--hover-bg);
}

.mobile-drawer-item.active {
  background: var(--primary-soft);
  color: var(--primary);
  font-weight: 600;
}

/* Category headers */
.mobile-drawer-category {
  padding: 16px 20px 8px 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

/* Sub-items (indented) */
.mobile-drawer-subitem {
  padding-left: 36px;
  font-size: 14px;
}

/* Drawer footer */
.mobile-drawer-footer {
  padding: 16px 20px;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 12px;
  color: var(--muted);
}

/* Hide drawer on desktop */
@media (min-width: 769px) {
  .mobile-drawer,
  .mobile-drawer-overlay {
    display: none !important;
  }
}

/* Hide desktop sidebar on mobile */
@media (max-width: 768px) {
  .sidebar {
    display: none !important;
  }

  /* Profile menu lives in drawer on mobile */
  .profile-dropdown {
    display: none !important;
  }
}

/* ─── Compact mobile notice (Phase 36) ───────────────────────── */
.mobile-compact-notice {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: flex-end;
  justify-content: stretch;
  padding: 0;
  box-sizing: border-box;
  pointer-events: none;
}

.mobile-compact-notice.is-open {
  pointer-events: auto;
}

.mobile-compact-notice[hidden] {
  display: none !important;
}

.mobile-compact-notice-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.mobile-compact-notice-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  height: 25vh;
  max-height: 25vh;
  min-height: 140px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-bottom: none;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.18);
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  overflow: auto;
}

.mobile-compact-notice-card h3 {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  flex-shrink: 0;
}

.mobile-compact-notice-card p {
  margin: 0 0 8px;
  font-size: 13px;
  line-height: 1.4;
  color: var(--muted);
  flex: 1;
  min-height: 0;
  overflow: auto;
}

.mobile-compact-notice-check {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 36px;
  margin-bottom: 8px;
  font-size: 13px;
  color: var(--text);
  cursor: pointer;
  flex-shrink: 0;
}

.mobile-compact-notice-check input {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.mobile-compact-notice-card .btn {
  width: 100%;
  min-height: 40px;
  flex-shrink: 0;
}

@media (min-width: 769px) {
  .mobile-compact-notice {
    display: none !important;
  }
}

/* ─── Touch targets (Phase 34) ──────────────────────────────── */
@media (max-width: 768px) {
  .icon-btn,
  .menu-toggle-btn {
    width: 44px;
    height: 44px;
  }

  .modal-close {
    width: 44px;
    height: 44px;
    font-size: 24px;
  }

  .btn,
  .btn-primary,
  .btn-secondary,
  .btn-light {
    min-height: 44px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .modal-body input[type="password"],
  .modal-body input[type="text"],
  .modal-body input[type="email"],
  .modal-body select,
  .hub-select,
  .hub-input {
    min-height: 44px;
    font-size: 16px;
  }

  .modal-actions {
    flex-direction: column-reverse;
    align-items: stretch;
  }

  .modal-actions .btn-primary,
  .modal-actions .btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

/* ─── Modal mobile sizing (Phase 34) ──────────────────────────── */
@media (max-width: 768px) {
  .modal {
    align-items: flex-end;
    padding: 16px;
    box-sizing: border-box;
  }

  .modal-content,
  .modal-panel {
    width: 100%;
    max-width: none;
    max-height: calc(100vh - 32px);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  }

  .modal-body {
    padding: 16px;
  }
}

@media (max-width: 480px) {
  .modal {
    padding: 0;
    align-items: stretch;
  }

  .modal-content,
  .modal-panel {
    width: 100%;
    min-height: 100vh;
    max-height: 100vh;
    border-radius: 0;
  }

  .modal-header {
    position: sticky;
    top: 0;
    z-index: 2;
    background: var(--surface);
  }

  .modal-body {
    flex: 1;
    overflow-y: auto;
  }
}

/* ─── Landscape phones (Phase 34) ───────────────────────────── */
@media (orientation: landscape) and (max-width: 920px) {
  .topbar {
    min-height: 52px;
  }

  .sidebar {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .side-block {
    flex: 0 0 auto;
    min-width: 88px;
  }

  .modal-content,
  .modal-panel {
    max-height: calc(100vh - 24px);
  }

  .users-modal {
    padding: 12px;
  }
}

/* ─── Themed scrollbars (light/dark via --border) ─────────────── */
html,
body,
.content,
.table-wrap,
.table-wrap--scrollable,
.users-modal-card,
.users-multiselect-menu,
.overview-table-wrap {
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}

.content::-webkit-scrollbar,
html::-webkit-scrollbar,
body::-webkit-scrollbar,
.table-wrap::-webkit-scrollbar,
.table-wrap--scrollable::-webkit-scrollbar,
.users-modal-card::-webkit-scrollbar,
.users-multiselect-menu::-webkit-scrollbar,
.overview-table-wrap::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

.content::-webkit-scrollbar-track,
html::-webkit-scrollbar-track,
body::-webkit-scrollbar-track,
.table-wrap::-webkit-scrollbar-track,
.table-wrap--scrollable::-webkit-scrollbar-track,
.users-modal-card::-webkit-scrollbar-track,
.users-multiselect-menu::-webkit-scrollbar-track,
.overview-table-wrap::-webkit-scrollbar-track {
  background: transparent;
}

.content::-webkit-scrollbar-thumb,
html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb,
.table-wrap::-webkit-scrollbar-thumb,
.table-wrap--scrollable::-webkit-scrollbar-thumb,
.users-modal-card::-webkit-scrollbar-thumb,
.users-multiselect-menu::-webkit-scrollbar-thumb,
.overview-table-wrap::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 999px;
}
