/* org/_layout.css — org role-specific rules.
   Brand teal + shared neutrals come from common/_tokens.css; admin-shell
   design language comes from common/_shell.css — both loaded before this
   file. This file only aliases the generic --accent name to org's teal. */

:root {
  --accent:         var(--teal);
  --accent-deep:    var(--teal-deep);
  --sidebar-bg:     var(--ink);
  --sidebar-w:      220px;
}


/* org's page-header is a simple stacked title+subtitle, no side action */
.page-header { margin-bottom: 28px; }

/* Small inline text-style action button — row-level toggles (Disable/
   Enable, Pause/Resume, Make default, Start tenancy...) across several
   org pages. --danger variant for destructive ones (e.g. Remove). */
.btn-link-sm {
  background: none;
  border: none;
  color: var(--accent);
  font: inherit;
  font-size: 13px;
  cursor: pointer;
  padding: 0 6px;
}
.btn-link-sm--danger { color: var(--danger); }
