/* ============================================================
   Portal Admin — Hub skin
   ------------------------------------------------------------
   Makes the root portal-admin pages (god_mode.php, manage_apps.php)
   read as the same site as ladcportal.com
   (the LADC Hub, /hub/assets/css/hub.css): warm paper ground,
   navy + gold, Archivo display / Public Sans body / IBM Plex
   Mono labels, hairline rules instead of drop shadows.

   EVERY rule is scoped to `body.pa`. assets/css/penske-theme.css
   is shared by 156 files across the monorepo — this file layers
   on top of it for this one page and must never leak out of it.
   Load order: bootstrap → penske-theme.css → portal-admin.css.
   ============================================================ */

body.pa {
  /* --- hub palette (mirrors hub.css :root) --- */
  --navy: #003366;
  --navy-d: #00254d;
  --navy-dd: #001a33;
  --gold: #FFCB05;
  --gold-d: #e0b200;

  --ink: #0e1726;
  --ink-soft: #46566b;
  --ink-faint: #7a8aa0;
  --paper: #f4f1ea;          /* warm editorial paper, not stark white */
  --card: #ffffff;
  --line: #e3ddd0;
  --hover: rgba(0,51,102,.05);

  --font-display: 'Archivo', system-ui, sans-serif;
  --font-body: 'Public Sans', system-ui, sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, monospace;

  --maxw: 1240px;
  --pad: clamp(18px, 4vw, 44px);
  --radius: 14px;

  /* --- remap penske-theme's tokens onto the hub palette, so the
         rules god_mode inherits (.stat-card, .table, .btn, Bootstrap
         utilities) land on hub colours without editing that file --- */
  --bg-primary: var(--paper);
  --bg-secondary: var(--card);
  --bg-card: var(--card);
  --text-primary: var(--ink);
  --text-secondary: var(--ink-soft);
  --text-muted: var(--ink-faint);
  --border-color: var(--line);
  --input-bg: var(--card);
  --input-border: var(--line);
  --hover-bg: var(--hover);
  --card-shadow: none;
  --navbar-height: 62px;
  --sidebar-width: 244px;

  margin: 0;
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

[data-theme="dark"] body.pa {
  --ink: #eef3f9;
  --ink-soft: #aab8c9;
  --ink-faint: #6b7a8d;
  --paper: #0b1119;
  --card: #131c28;
  --line: #233144;
  --hover: rgba(255,203,5,.06);
}

body.pa a { color: inherit; text-decoration: none; }
body.pa h1, body.pa h2, body.pa h3, body.pa h4 {
  font-family: var(--font-display);
  letter-spacing: -.02em;
}
body.pa [hidden] { display: none !important; }   /* author display rules beat the attribute */
body.pa .text-muted { color: var(--ink-faint) !important; }

/* grain overlay — the texture that makes the Hub feel printed */
body.pa .hub-grain {
  position: fixed; inset: 0; z-index: 9999; pointer-events: none; opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* mono, tracked label — the Hub's section marker */
body.pa .eyebrow {
  font-family: var(--font-mono); font-size: 12px; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase; color: var(--ink-faint);
  display: inline-flex; align-items: center; gap: 9px;
}
body.pa .eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--gold);
  box-shadow: 0 0 0 4px rgba(255,203,5,.18);
}

/* ---------------- TOP BAR ----------------
   The Hub's bar is paper + blur with one hairline underneath, not a
   solid navy slab. Everything in it flips from white-on-navy to ink. */
body.pa .top-navbar {
  height: var(--navbar-height);
  background: color-mix(in srgb, var(--paper) 82%, transparent);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
  box-shadow: none;
  color: var(--ink);
  padding: 0 var(--pad);
  gap: 6px;
}
body.pa .navbar-brand,
body.pa .navbar-brand:hover {
  font-family: var(--font-display); font-weight: 900; font-size: 22px;
  letter-spacing: -.03em; color: var(--ink) !important; gap: 9px;
}
body.pa .navbar-brand i { display: none; }        /* the gold chip carries the accent now */
body.pa .navbar-brand .sub {
  font-family: var(--font-mono); font-size: 11px; font-weight: 600;
  letter-spacing: .28em; color: var(--navy); background: var(--gold);
  padding: 2px 7px; border-radius: 4px;
}
[data-theme="dark"] body.pa .navbar-brand .sub { color: var(--navy-dd); }

body.pa .sidebar-toggle { color: var(--ink-soft); margin-right: 4px; }

/* view switch → the Hub's underline tabs */
body.pa .view-toggle { background: none; padding: 0; gap: 4px; margin-left: 22px; }
body.pa .view-btn {
  position: relative; font-family: var(--font-body); font-weight: 600; font-size: 14px;
  color: var(--ink-soft); padding: 8px 14px; border-radius: 8px;
}
body.pa .view-btn:hover { color: var(--ink); background: var(--hover); }
body.pa .view-btn.active { color: var(--ink); background: none; }
body.pa .view-btn.active::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 1px;
  height: 2px; background: var(--gold);
}

body.pa .navbar-right { gap: 12px; }
body.pa .theme-toggle {
  background: none; border: 1px solid var(--line); border-radius: 7px;
  width: 36px; height: 32px; color: var(--ink-soft);
  display: grid; place-items: center; padding: 0;
}
body.pa .theme-toggle:hover { border-color: var(--navy); color: var(--ink); background: none; }
[data-theme="dark"] body.pa .theme-toggle:hover { border-color: var(--gold); }

body.pa .user-info { text-align: right; line-height: 1.25; }
body.pa .user-name { font-weight: 600; font-size: 14px; color: var(--ink); }
body.pa .user-role {
  font-family: var(--font-mono); font-size: 10px; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase; color: var(--ink-faint); opacity: 1;
}
body.pa .btn-logout {
  background: var(--navy); border: 1px solid var(--navy); color: #fff;
  font-weight: 600; font-size: 14px; padding: 8px 14px; border-radius: 9px;
}
body.pa .btn-logout:hover { background: var(--navy-d); color: #fff; }
[data-theme="dark"] body.pa .btn-logout { background: var(--gold); border-color: var(--gold); color: var(--navy-dd); }
[data-theme="dark"] body.pa .btn-logout:hover { background: var(--gold-d); color: var(--navy-dd); }

/* ---------------- SIDEBAR ----------------
   Kept as a rail, but a paper one with a hairline — the navy slab was
   the loudest thing on the page and the Hub has nothing like it. */
body.pa .sidebar {
  background: var(--paper);
  color: var(--ink);
  border-right: 1px solid var(--line);
  padding: 10px 0 30px;
}
body.pa .nav-section {
  font-family: var(--font-mono); font-size: 11px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; color: var(--ink-faint);
  opacity: 1; padding: 22px 22px 8px; margin: 0 14px 6px;
  border-bottom: 1px solid var(--line);
}
body.pa .nav-item { margin: 1px 10px; }
body.pa .sidebar .nav-link {
  position: relative; color: var(--ink-soft); border-radius: 9px;
  padding: 9px 13px; font-size: 14px; font-weight: 500;
}
body.pa .sidebar .nav-link:hover { background: var(--hover); color: var(--ink); }
body.pa .sidebar .nav-link.active {
  background: var(--hover); color: var(--ink); font-weight: 600;
}
body.pa .sidebar .nav-link.active::before {
  content: ""; position: absolute; left: -10px; top: 7px; bottom: 7px;
  width: 3px; border-radius: 0 3px 3px 0; background: var(--gold);
}
body.pa .sidebar .nav-link i,
body.pa .sidebar .nav-link.active i { color: var(--ink-faint); }
body.pa .sidebar .nav-link:hover i,
body.pa .sidebar .nav-link.active i { color: var(--navy); }
[data-theme="dark"] body.pa .sidebar .nav-link:hover i,
[data-theme="dark"] body.pa .sidebar .nav-link.active i { color: var(--gold); }

/* ---------------- MAIN ---------------- */
body.pa .main-content {
  background: var(--paper);
  padding: clamp(26px, 4vw, 44px) var(--pad) 60px;
  /* Reading-width cap for the God Mode dashboard, whose content is a grid of
     cards. It is deliberately NOT applied to .no-sidebar below: those pages
     are wide data tables, and capping them pushed real columns (Sync Status,
     Status, Actions) into a horizontal scroll while leaving empty paper on
     the right. A table wants the window; a card grid does not. */
  max-width: calc(var(--maxw) + var(--sidebar-width));
}
body.pa .main-content.no-sidebar {
  max-width: none;
  /* and a tighter gutter than the editorial pad — every pixel spent on the
     margin here is a pixel of the table the user has to scroll to reach */
  padding-left: clamp(14px, 1.6vw, 26px);
  padding-right: clamp(14px, 1.6vw, 26px);
}
body.pa .section-title {
  font-family: var(--font-mono); font-size: 11px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; color: var(--ink-faint);
  padding-bottom: 10px; margin: 0 0 18px;
  border-bottom: 1px solid var(--line); gap: 10px;
}
body.pa .section-title i { color: var(--gold-d); font-size: 13px; }
body.pa .section-title + * { margin-top: 0; }
body.pa .main-content > .section-title ~ .section-title { margin-top: 46px; }

/* quick actions */
body.pa .quick-actions { gap: 10px; margin-bottom: 42px; }
body.pa .action-btn {
  justify-content: flex-start; background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); color: var(--ink); font-weight: 600; font-size: 14px;
  padding: 14px 16px;
}
body.pa .action-btn i { color: var(--navy); font-size: 17px; }
body.pa .action-btn:hover {
  background: var(--card); border-color: var(--navy); color: var(--ink);
  transform: translateY(-3px); box-shadow: 0 12px 26px rgba(0,38,77,.12);
}
[data-theme="dark"] body.pa .action-btn:hover {
  border-color: var(--gold); color: var(--ink); box-shadow: 0 12px 26px rgba(0,0,0,.4);
}
[data-theme="dark"] body.pa .action-btn i { color: var(--gold); }

/* stat cards */
body.pa .stats-grid { gap: 14px; margin-bottom: 42px; }
body.pa .stat-card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: none; padding: 22px;
}
body.pa .stat-card-label {
  font-family: var(--font-mono); font-size: 11px; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase; color: var(--ink-faint);
  margin-bottom: 6px;
}
body.pa .stat-card-value {
  font-family: var(--font-display); font-weight: 800; font-size: 40px;
  letter-spacing: -.03em; color: var(--ink); line-height: 1;
}
body.pa .stat-card small { font-size: 13px; }
body.pa .stat-card-icon {
  width: 38px; height: 38px; border-radius: 10px; font-size: 17px;
  background: var(--navy); color: #fff;
}
[data-theme="dark"] body.pa .stat-card-icon { background: var(--navy-d); color: var(--gold); }

/* admin panel cards — the Hub's .app-tile, at card size */
body.pa .admin-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 12px; }
body.pa .admin-card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 18px; display: flex; flex-direction: column;
  transition: transform .18s, box-shadow .18s, border-color .18s;
}
body.pa .admin-card:hover {
  transform: translateY(-3px); border-color: var(--navy);
  box-shadow: 0 12px 26px rgba(0,38,77,.12);
}
[data-theme="dark"] body.pa .admin-card:hover { border-color: var(--gold); box-shadow: 0 12px 26px rgba(0,0,0,.4); }
body.pa .admin-card-icon {
  width: 38px; height: 38px; border-radius: 10px; font-size: 18px;
  background: var(--navy); color: #fff; margin-bottom: 14px;
  transition: background .18s, color .18s;
}
body.pa .admin-card:hover .admin-card-icon { background: var(--navy-dd); }
[data-theme="dark"] body.pa .admin-card-icon { background: var(--navy-d); color: var(--gold); }
[data-theme="dark"] body.pa .admin-card:hover .admin-card-icon { background: var(--gold); color: var(--navy-dd); }
body.pa .admin-card-title {
  font-family: var(--font-display); font-weight: 700; font-size: 16px;
  line-height: 1.25; letter-spacing: -.01em; color: var(--ink);
  margin: 0 0 16px; flex: 1;
}
body.pa .admin-card-actions { gap: 8px; }
body.pa .admin-card-btn {
  padding: 9px 10px; border-radius: 9px; font-weight: 600; font-size: 13px;
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
}
body.pa .admin-card-btn.primary { background: var(--navy); color: #fff; }
body.pa .admin-card-btn.primary:hover { background: var(--navy-d); color: #fff; }
[data-theme="dark"] body.pa .admin-card-btn.primary { background: var(--gold); color: var(--navy-dd); }
[data-theme="dark"] body.pa .admin-card-btn.primary:hover { background: var(--gold-d); }
body.pa .admin-card-btn.secondary {
  background: none; border: 1px solid var(--line); color: var(--ink-soft);
}
body.pa .admin-card-btn.secondary:hover { border-color: var(--navy); color: var(--ink); background: none; }
[data-theme="dark"] body.pa .admin-card-btn.secondary:hover { border-color: var(--gold); }

/* embedded admin panel */
body.pa .iframe-container {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; height: calc(100vh - 190px);
}

@media (max-width: 991px) {
  body.pa .sidebar { background: var(--paper); box-shadow: 0 20px 60px rgba(0,10,20,.25); }
  body.pa .main-content { padding: 26px var(--pad) 50px; }
}

/* ---------------- LOGIN ----------------
   The Hub hero is a navy mesh with gold accents; the login screen is
   that hero with a card sitting in it. */
body.pa.pa-login {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  padding: 24px; position: relative; background: var(--navy-dd);
}
body.pa.pa-login::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(1000px 520px at 12% -10%, rgba(0,64,128,.85), transparent 60%),
    radial-gradient(760px 420px at 88% 8%, rgba(255,203,5,.16), transparent 62%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-dd) 70%);
}
body.pa.pa-login > * { position: relative; z-index: 1; }
body.pa.pa-login .hub-grain { opacity: .05; }

body.pa .login-container {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0,10,20,.45);
  width: 100%; max-width: 420px; padding: 38px 36px 34px;
}
body.pa .login-logo { text-align: left; margin-bottom: 26px; }
body.pa .login-logo .eyebrow { margin-bottom: 12px; }
body.pa .login-logo h1 {
  font-family: var(--font-display); font-weight: 900; font-size: 34px;
  letter-spacing: -.035em; color: var(--ink); margin: 0 0 6px;
}
body.pa .login-logo h1 i { display: none; }
body.pa .login-logo p { color: var(--ink-soft); font-size: 15px; margin: 0; }

body.pa .login-error {
  background: rgba(215,38,61,.08); border: 1px solid rgba(215,38,61,.3);
  border-left: 3px solid #d7263d; color: #d7263d;
  padding: 11px 14px; border-radius: 9px; margin-bottom: 18px; font-size: 14px;
}
body.pa .login-form .form-group { margin-bottom: 18px; }
body.pa .login-form label {
  display: block;
  font-family: var(--font-mono); font-size: 11px; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase; color: var(--ink-faint);
  margin-bottom: 7px;
}
body.pa .login-form input {
  width: 100%;
  border: 1px solid var(--line); border-radius: 9px; background: var(--paper);
  color: var(--ink); font-family: var(--font-body); font-size: 15px; padding: 12px 14px;
  transition: border-color .18s, box-shadow .18s;
}
body.pa .login-form input:focus {
  border-color: var(--navy); box-shadow: 0 0 0 3px var(--hover); background: var(--card);
}
[data-theme="dark"] body.pa .login-form input:focus { border-color: var(--gold); }
body.pa .login-btn {
  width: 100%; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: background .18s;
  background: var(--navy); color: #fff; border-radius: 10px; padding: 13px;
  font-family: var(--font-body); font-weight: 700; font-size: 15px; letter-spacing: .01em;
}
body.pa .login-btn:hover { background: var(--navy-d); transform: none; }
[data-theme="dark"] body.pa .login-btn { background: var(--gold); color: var(--navy-dd); }
[data-theme="dark"] body.pa .login-btn:hover { background: var(--gold-d); }
body.pa .theme-switch {
  position: absolute; top: 20px; right: 20px;
  border-color: rgba(255,255,255,.28); color: rgba(255,255,255,.85);
}
body.pa .theme-switch:hover { border-color: var(--gold); color: var(--gold); }

body.pa .login-foot {
  margin-top: 22px; padding-top: 16px; border-top: 1px solid var(--line);
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--ink-faint); text-align: center;
}
body.pa .login-foot a:hover { color: var(--navy); }
[data-theme="dark"] body.pa .login-foot a:hover { color: var(--gold); }

/* ============================================================
   Bootstrap components (manage_apps.php and friends)
   Bootstrap 5 ships its own light palette and several
   !important utilities; these pull them onto the Hub tokens.
   ============================================================ */
body.pa .page-header { margin-bottom: 26px; }
body.pa .page-header h1 {
  font-family: var(--font-display); font-weight: 900; letter-spacing: -.03em;
  font-size: clamp(26px, 4vw, 40px); color: var(--ink); margin: 0 0 6px;
}
body.pa .page-header p, body.pa .page-header .text-muted { color: var(--ink-soft) !important; font-size: 15px; }

body.pa .card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: none;
}
body.pa .card-header {
  background: transparent !important; border-bottom: 1px solid var(--line);
  padding: 16px 20px; color: var(--ink);
}
body.pa .card-header h5, body.pa .card-header h6, body.pa .card-header .card-title {
  font-family: var(--font-mono); font-size: 11px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; color: var(--ink-faint); margin: 0;
}
body.pa .card.bg-light { background: var(--paper) !important; }

body.pa .table { color: var(--ink); border-color: var(--line); margin-bottom: 0; }
body.pa .table > :not(caption) > * > * { background: transparent; border-color: var(--line); }
body.pa .table thead th {
  font-family: var(--font-mono); font-size: 10px; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase; color: var(--ink-faint);
  background: transparent !important; border-bottom: 1px solid var(--line); padding: 12px 14px;
}
body.pa .table tbody td { padding: 12px 14px; vertical-align: middle; }
body.pa .table-hover > tbody > tr:hover > * { background: var(--hover); color: var(--ink); }

body.pa .form-control, body.pa .form-select, body.pa .input-group-text {
  background: var(--card); border-color: var(--line); color: var(--ink);
  border-radius: 9px; font-family: var(--font-body);
}
body.pa .form-control:focus, body.pa .form-select:focus {
  border-color: var(--navy); box-shadow: 0 0 0 3px var(--hover); background: var(--card); color: var(--ink);
}
[data-theme="dark"] body.pa .form-control:focus,
[data-theme="dark"] body.pa .form-select:focus { border-color: var(--gold); }
body.pa .form-control::placeholder { color: var(--ink-faint); }
body.pa .form-text { color: var(--ink-faint); font-size: 12px; }
body.pa .form-label { color: var(--ink); font-size: 13px; }
body.pa code { color: var(--navy); background: var(--hover); padding: 1px 5px; border-radius: 4px; }
[data-theme="dark"] body.pa code { color: var(--gold); }

body.pa .btn { border-radius: 9px; font-weight: 600; font-size: 14px; }
body.pa .btn-primary { background: var(--navy); border-color: var(--navy); color: #fff; }
body.pa .btn-primary:hover { background: var(--navy-d); border-color: var(--navy-d); }
[data-theme="dark"] body.pa .btn-primary { background: var(--gold); border-color: var(--gold); color: var(--navy-dd); }
[data-theme="dark"] body.pa .btn-primary:hover { background: var(--gold-d); border-color: var(--gold-d); }
body.pa .btn-outline-secondary { border-color: var(--line); color: var(--ink-soft); }
body.pa .btn-outline-secondary:hover,
body.pa .btn-outline-secondary.active { background: var(--navy); border-color: var(--navy); color: #fff; }
[data-theme="dark"] body.pa .btn-outline-secondary:hover,
[data-theme="dark"] body.pa .btn-outline-secondary.active { background: var(--gold); border-color: var(--gold); color: var(--navy-dd); }

body.pa .modal-content {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); color: var(--ink);
}
body.pa .modal-header, body.pa .modal-footer { border-color: var(--line); }
body.pa .modal-title {
  font-family: var(--font-mono); font-size: 11px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; color: var(--ink-faint);
}

/* the icon chip in the app table, and the picker cells */
body.pa .app-icon i { line-height: 1; }
body.pa .icon-item { color: var(--ink-soft); }
body.pa .icon-item:hover {
  background: var(--hover); border-color: var(--navy); color: var(--ink); transform: translateY(-2px);
}
[data-theme="dark"] body.pa .icon-item:hover { border-color: var(--gold); }
body.pa .icon-preview { background: var(--paper); color: var(--ink-soft); }
body.pa .input-group { flex-wrap: nowrap; }
body.pa .input-group > .form-control { min-width: 0; }

/* the three toggle columns were Bootstrap green/red at full button size, which
   shouted louder than anything else on a page that is mostly a quiet list */
body.pa .btn-toggle { padding: 4px 10px; font-size: 12px; }
body.pa .btn-success, body.pa .btn-toggle.active {
  background: var(--navy); border-color: var(--navy); color: #fff;
}
body.pa .btn-success:hover, body.pa .btn-toggle.active:hover { background: var(--navy-d); border-color: var(--navy-d); }
[data-theme="dark"] body.pa .btn-success, [data-theme="dark"] body.pa .btn-toggle.active {
  background: var(--gold); border-color: var(--gold); color: var(--navy-dd);
}
body.pa .badge.bg-success { background: var(--navy) !important; }
[data-theme="dark"] body.pa .badge.bg-success { background: var(--gold) !important; color: var(--navy-dd) !important; }
body.pa .drag-handle { color: var(--ink-faint); }
body.pa .drag-handle:hover { color: var(--ink); }
body.pa .folder-exists { color: #198754; }
body.pa .folder-missing { color: #d7263d; }
body.pa .alert { border-radius: var(--radius); }

/* ---- manage_users.php ---- */
body.pa .page-header h1 i { color: var(--gold-d); font-size: .8em; }
body.pa .action-buttons { gap: 8px; margin-bottom: 22px; }
body.pa .btn-secondary { background: var(--card); border-color: var(--line); color: var(--ink); }
body.pa .btn-secondary:hover { background: var(--hover); border-color: var(--navy); color: var(--ink); }
[data-theme="dark"] body.pa .btn-secondary:hover { border-color: var(--gold); }
body.pa .dropdown-menu {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: 0 12px 26px rgba(0,38,77,.12); padding: 6px;
}
[data-theme="dark"] body.pa .dropdown-menu { box-shadow: 0 12px 26px rgba(0,0,0,.4); }
body.pa .dropdown-item { color: var(--ink); border-radius: 8px; padding: 8px 12px; font-size: 14px; }
body.pa .dropdown-item:hover, body.pa .dropdown-item:focus { background: var(--hover); color: var(--ink); }

body.pa .filter-row th { background: var(--paper) !important; border-bottom: 1px solid var(--line); }
body.pa .filter-row input, body.pa .filter-row select {
  background-color: var(--card) !important; color: var(--ink) !important;
  border: 1px solid var(--line); border-radius: 7px;
}
body.pa .filter-row input::placeholder { color: var(--ink-faint) !important; }
body.pa th.sortable:hover { background: var(--hover); }
body.pa .user-row.terminated { opacity: .5; }
body.pa .filter-count { color: var(--ink-faint); font-family: var(--font-mono); font-size: 12px; letter-spacing: .1em; }
body.pa .app-role-row { border-bottom-color: var(--line); }

/* status badges: keep the meaning, drop the fluorescent */
body.pa .badge-synced  { background: #0f7b4f !important; }
body.pa .badge-pending { background: #a1670a !important; }
body.pa .badge-error   { background: #b42318 !important; }
body.pa .sync-status { font-family: var(--font-mono); letter-spacing: .08em; }
body.pa .photo-thumb:hover { box-shadow: 0 6px 18px rgba(0,38,77,.22); }

/* The Actions cell holds four icon buttons. Left to wrap they stack into a
   column, which set the height of EVERY row in the table to ~189px — the
   reason only three users fit on screen. One line, compact buttons. */
body.pa #usersTable td:last-child,
body.pa #usersTable th:last-child { white-space: nowrap; }
body.pa .btn-sm { font-size: 12px; padding: 4px 8px; line-height: 1.3; }
body.pa #usersTable td:last-child .btn-sm { margin-right: 2px !important; }

/* ---- manage_app_sync.php ---- */
body.pa .quick-links { gap: 8px; margin-bottom: 22px; }
body.pa .btn-outline-primary { border-color: var(--line); color: var(--ink); }
body.pa .btn-outline-primary:hover { background: var(--navy); border-color: var(--navy); color: #fff; }
[data-theme="dark"] body.pa .btn-outline-primary:hover { background: var(--gold); border-color: var(--gold); color: var(--navy-dd); }
body.pa .status-configured { color: #0f7b4f; }
body.pa .status-not-configured { color: var(--ink-faint); }
body.pa .sync-enabled  { background: rgba(15,123,79,.07); }
body.pa .sync-disabled { background: rgba(180,35,24,.06); }
[data-theme="dark"] body.pa .sync-enabled  { background: rgba(15,123,79,.16); }
[data-theme="dark"] body.pa .sync-disabled { background: rgba(180,35,24,.16); }
body.pa .field-helper { color: var(--ink-faint); }
body.pa .column-item {
  background: var(--paper); border: 1px solid var(--line); border-radius: 6px;
  font-family: var(--font-mono); font-size: 11px; color: var(--ink-soft);
}
body.pa .column-item:hover { background: var(--hover); border-color: var(--navy); color: var(--ink); }
body.pa .app-icon { background: var(--navy) !important; color: #fff !important; }
[data-theme="dark"] body.pa .app-icon { background: var(--navy-d) !important; color: var(--gold) !important; }

/* ---- manage_app_access.php (the role matrix) ---- */
body.pa .matrix thead th {
  position: sticky; top: 0; z-index: 2;
  background: var(--card) !important; color: var(--ink-faint);
  font-family: var(--font-mono); font-size: 10px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  border-bottom: 1px solid var(--line);
}
body.pa .matrix tbody td { border-bottom: 1px solid var(--line); color: var(--ink); }
body.pa .matrix tbody tr:hover td { background: var(--hover); }
body.pa .matrix td.app small { color: var(--ink-faint); font-family: var(--font-mono); font-size: 11px; }
body.pa .matrix tr.disabled td.app,
body.pa .matrix tr.disabled td { color: var(--ink-faint); }
body.pa .matrix tr.disabled { background: var(--paper); }
body.pa .rowtools { color: var(--ink-faint); }
body.pa .rowtools:hover { color: var(--navy); }
[data-theme="dark"] body.pa .rowtools:hover { color: var(--gold); }
[data-theme="dark"] body.pa .matrix input[type=checkbox] { accent-color: #FFCB05; }
body.pa .alert-success {
  background: rgba(15,123,79,.08); border: 1px solid rgba(15,123,79,.28);
  color: #0f7b4f;
}

/* ============================================================
   manage_sap_passwords.php — converted off glass-suite, 2026-08-21
   ------------------------------------------------------------
   The markup and all 71 class names are UNCHANGED on purpose: this
   page renders every row twice (PHP on load, JS after an inline edit)
   and its script toggles .editing/.on/.sel/.open/.row-disabled by
   name. Rewriting the markup to Bootstrap would have put all of that
   at risk for a paint job. So the classes stay and the paint changes.
   assets/css/glass-suite.css is NOT edited — it still serves
   manage_generic_ids.php and task-board.
   ============================================================ */
body.pa #aura, body.pa #grain, body.pa .blob, body.pa .spot, body.pa .glow { display: none; }

body.pa .shell { max-width: none; margin: 0 auto; padding: 0 clamp(14px,1.6vw,26px) 60px; }

/* header */
body.pa .topbar {
  display: flex; align-items: center; gap: 14px;
  background: color-mix(in srgb, var(--paper) 82%, transparent);
  backdrop-filter: saturate(140%) blur(12px);
  border: 0; border-bottom: 1px solid var(--line); border-radius: 0;
  box-shadow: none; padding: 12px clamp(14px,1.6vw,26px);
  margin: 0 calc(-1 * clamp(14px,1.6vw,26px)) 26px;
  position: sticky; top: 0; z-index: 100;
}
body.pa .topbar .logo {
  width: 34px; height: 34px; border-radius: 9px; background: var(--navy);
  display: grid; place-items: center; box-shadow: none;
}
[data-theme="dark"] body.pa .topbar .logo { background: var(--navy-d); }
body.pa .topbar .logo svg { width: 19px; height: 19px; }
body.pa .brand b {
  font-family: var(--font-display); font-weight: 900; font-size: 20px;
  letter-spacing: -.03em; color: var(--ink); display: block;
}
body.pa .brand small {
  font-family: var(--font-mono); font-size: 10px; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase; color: var(--ink-faint);
}
body.pa .spacer { flex: 1; }
body.pa .topbar .exit {
  font-weight: 600; font-size: 14px; color: var(--ink-soft);
  border: 1px solid var(--line); border-radius: 9px; padding: 8px 13px;
  background: none; display: inline-flex; align-items: center; gap: 6px;
}
body.pa .topbar .exit:hover { border-color: var(--navy); color: var(--ink); background: var(--hover); }
[data-theme="dark"] body.pa .topbar .exit:hover { border-color: var(--gold); }

/* stat tiles */
body.pa .stats { display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); gap: 12px; margin-bottom: 20px; }
body.pa .stats .tile {
  position: relative; text-align: left; cursor: pointer;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 18px 20px; box-shadow: none; transition: transform .18s, border-color .18s, box-shadow .18s;
}
body.pa .stats .tile:hover { transform: translateY(-3px); border-color: var(--navy); box-shadow: 0 12px 26px rgba(0,38,77,.12); }
[data-theme="dark"] body.pa .stats .tile:hover { border-color: var(--gold); box-shadow: 0 12px 26px rgba(0,0,0,.4); }
body.pa .stats .tile.sel { border-color: var(--navy); box-shadow: inset 0 0 0 1px var(--navy); }
[data-theme="dark"] body.pa .stats .tile.sel { border-color: var(--gold); box-shadow: inset 0 0 0 1px var(--gold); }
body.pa .stats .tile .ico {
  width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center;
  background: var(--navy); color: #fff; font-size: 17px; margin-bottom: 12px;
}
[data-theme="dark"] body.pa .stats .tile .ico { background: var(--navy-d); color: var(--gold); }
body.pa .stats .tile .n {
  font-family: var(--font-display); font-weight: 800; font-size: 38px;
  letter-spacing: -.03em; color: var(--ink); line-height: 1;
}
body.pa .stats .tile .l {
  font-family: var(--font-mono); font-size: 11px; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase; color: var(--ink-faint); margin-top: 6px;
}

/* console row */
body.pa .console { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-bottom: 8px; }
body.pa .console .search {
  position: relative; display: flex; align-items: center; gap: 10px; flex: 1 1 300px;
  background: var(--card); border: 1px solid var(--line); border-radius: 10px;
  height: 42px; padding: 0 13px;
}
body.pa .console .search:focus-within { border-color: var(--navy); box-shadow: 0 0 0 3px var(--hover); }
[data-theme="dark"] body.pa .console .search:focus-within { border-color: var(--gold); }
body.pa .console .search svg { width: 17px; height: 17px; color: var(--ink-faint); flex: 0 0 auto; }
body.pa .console .search input {
  flex: 1; min-width: 0; background: none; border: 0; outline: none; height: 100%;
  color: var(--ink); font-family: var(--font-body); font-size: 14px; padding: 0;
}
body.pa .console .search kbd {
  font-family: var(--font-mono); font-size: 11px; color: var(--ink-faint);
  border: 1px solid var(--line); border-radius: 5px; padding: 2px 6px; background: none;
}
body.pa .seg {
  position: relative; display: flex; gap: 2px; background: var(--card);
  border: 1px solid var(--line); border-radius: 10px; padding: 3px;
}
body.pa .seg .ind { display: none; }
body.pa .seg button {
  border: 0; background: none; cursor: pointer; border-radius: 7px; padding: 7px 12px;
  font-family: var(--font-body); font-weight: 600; font-size: 13px; color: var(--ink-soft);
}
body.pa .seg button:hover { background: var(--hover); color: var(--ink); }
body.pa .seg button.on { background: var(--navy); color: #fff; }
[data-theme="dark"] body.pa .seg button.on { background: var(--gold); color: var(--navy-dd); }
body.pa .seg button .c { font-family: var(--font-mono); font-size: 11px; opacity: .75; margin-left: 5px; }
body.pa .console .right { display: flex; gap: 8px; margin-left: auto; }

body.pa .btn {
  border-radius: 9px; font-family: var(--font-body); font-weight: 600; font-size: 14px;
  padding: 9px 14px; display: inline-flex; align-items: center; gap: 7px; cursor: pointer;
  border: 1px solid transparent;
}
body.pa .btn-ghost { background: var(--card); border-color: var(--line); color: var(--ink); box-shadow: none; }
body.pa .btn-ghost:hover { background: var(--hover); border-color: var(--navy); }
[data-theme="dark"] body.pa .btn-ghost:hover { border-color: var(--gold); }
body.pa .btn-primary { background: var(--navy); border-color: var(--navy); color: #fff; box-shadow: none; }
body.pa .btn-primary:hover { background: var(--navy-d); border-color: var(--navy-d); }
[data-theme="dark"] body.pa .btn-primary { background: var(--gold); border-color: var(--gold); color: var(--navy-dd); }
[data-theme="dark"] body.pa .btn-primary:hover { background: var(--gold-d); border-color: var(--gold-d); }

body.pa .scanout { font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--ink-faint); margin: 10px 2px 14px; }

/* panels */
body.pa .panel, body.pa .bulk {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: none; backdrop-filter: none;
}
body.pa .bulk h4 { font-family: var(--font-display); font-weight: 700; color: var(--ink); }
body.pa .bulk p { color: var(--ink-soft); }
body.pa .bulk code { color: var(--navy); background: var(--hover); padding: 1px 5px; border-radius: 4px; }
[data-theme="dark"] body.pa .bulk code { color: var(--gold); }
body.pa .panel .scroll { overflow-x: auto; }

/* table */
body.pa #tbl { width: 100%; border-collapse: separate; border-spacing: 0; }
body.pa #tbl th {
  font-family: var(--font-mono); font-size: 10px; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; color: var(--ink-faint); text-align: left;
  padding: 13px 14px; border-bottom: 1px solid var(--line); background: transparent;
}
body.pa #tbl th.sortable { cursor: pointer; user-select: none; }
body.pa #tbl th.sortable:hover { color: var(--ink); }
body.pa #tbl th .arw { opacity: .25; font-size: 9px; margin-left: 3px; display: inline-block; }
body.pa #tbl th.asc .arw { opacity: .9; }
body.pa #tbl th.sortable.asc, body.pa #tbl th.sortable.on { color: var(--ink); }
body.pa #tbl td { padding: 11px 14px; border-bottom: 1px solid var(--line); color: var(--ink); font-size: 14px; }
body.pa #tbl tbody tr:hover td { background: var(--hover); }
body.pa #tbl tbody tr.row-disabled td { opacity: .5; }
body.pa .no-res { padding: 26px; text-align: center; color: var(--ink-faint); }

/* cells */
body.pa .gid, body.pa .mono { font-family: var(--font-mono); font-size: 12.5px; }
body.pa .gid { background: var(--hover); color: var(--navy); padding: 3px 8px; border-radius: 6px; }
[data-theme="dark"] body.pa .gid { color: var(--gold); }
body.pa .gidwrap, body.pa .pwcell { display: inline-flex; align-items: center; gap: 6px; }
body.pa .copy {
  border: 0; background: none; cursor: pointer; color: var(--ink-faint);
  padding: 3px; border-radius: 5px; opacity: 0; transition: opacity .15s, color .15s;
}
body.pa tr:hover .copy, body.pa .copy:focus { opacity: 1; }
body.pa .copy:hover { color: var(--navy); background: var(--hover); }
[data-theme="dark"] body.pa .copy:hover { color: var(--gold); }
body.pa .editable { cursor: text; border-radius: 6px; padding: 2px 4px; margin: -2px -4px; }
body.pa .editable:hover { background: var(--hover); box-shadow: inset 0 0 0 1px var(--line); }
body.pa .editable.editing { background: var(--card); box-shadow: inset 0 0 0 1px var(--navy); }
body.pa .empty { color: var(--ink-faint); font-style: italic; font-size: 13px; }
body.pa .chip {
  display: inline-flex; align-items: center; gap: 6px; border-radius: 20px;
  padding: 3px 10px; font-size: 12px; font-weight: 600;
  background: var(--hover); color: var(--ink-soft);
}
body.pa .chip i { width: 6px; height: 6px; border-radius: 50%; background: currentColor; display: inline-block; }
body.pa .chip.active { color: #0f7b4f; background: rgba(15,123,79,.1); }
body.pa .chip.disabled { color: var(--ink-faint); background: var(--hover); }
body.pa .ops { display: inline-flex; gap: 4px; }
body.pa .ic {
  border: 1px solid var(--line); background: var(--card); cursor: pointer;
  width: 28px; height: 28px; border-radius: 8px; display: grid; place-items: center;
  color: var(--ink-soft); padding: 0;
}
body.pa .ic:hover { border-color: var(--navy); color: var(--ink); background: var(--hover); }
body.pa .ic.danger:hover { border-color: #b42318; color: #b42318; }
body.pa .ic.ok:hover { border-color: #0f7b4f; color: #0f7b4f; }
[data-theme="dark"] body.pa .ic:hover { border-color: var(--gold); }

/* inputs + modal */
body.pa .input {
  background: var(--card); border: 1px solid var(--line); border-radius: 9px;
  color: var(--ink); font-family: var(--font-body); font-size: 14px; padding: 10px 12px;
}
body.pa .input:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px var(--hover); }
[data-theme="dark"] body.pa .input:focus { border-color: var(--gold); }
body.pa .overlay { background: rgba(0,10,20,.5); backdrop-filter: blur(3px); }
body.pa .dialog {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0,10,20,.4);
}
body.pa .dhead, body.pa .dfoot { border-color: var(--line); }
body.pa .dhead h3 { font-family: var(--font-display); font-weight: 800; letter-spacing: -.02em; color: var(--ink); }
body.pa .dclose { color: var(--ink-faint); background: none; border: 0; cursor: pointer; }
body.pa .dclose:hover { color: var(--ink); }
body.pa .fg label { font-family: var(--font-mono); font-size: 10px; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase; color: var(--ink-faint); }
body.pa .req { color: #b42318; }
body.pa .derr { color: #b42318; font-size: 13px; }
body.pa .gen {
  border: 1px solid var(--line); background: var(--card); color: var(--ink-soft);
  border-radius: 9px; cursor: pointer; display: grid; place-items: center; padding: 0 11px;
}
body.pa .gen:hover { border-color: var(--navy); color: var(--ink); }
[data-theme="dark"] body.pa .gen:hover { border-color: var(--gold); }

/* ---- structure glass-suite was carrying, reproduced ----
   Colour is only half of what that stylesheet did for this page. These are
   the rules that make the thing WORK: without .overlay's fixed/display pair
   the add-user dialog renders inline and is permanently open; without
   #toasts the save confirmations land in the page flow; without the mobile
   block the seven-column table stops collapsing into cards. Found by
   diffing what this page uses against what I had written, not by luck. */
body.pa .overlay {
  position: fixed; inset: 0; z-index: 200; display: none;
  align-items: center; justify-content: center; padding: 18px;
}
body.pa .overlay.open { display: flex; }
body.pa .dialog { width: 100%; max-width: 560px; overflow: hidden; }
body.pa .dhead { display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px 16px; border-bottom: 1px solid var(--line); }
body.pa .dhead h3 { font-size: 19px; margin: 0; }
body.pa .dclose { width: 34px; height: 34px; border-radius: 9px; font-size: 18px;
  display: grid; place-items: center; }
body.pa .dclose:hover { color: #b42318; background: var(--hover); }
body.pa .dbody { padding: 18px 24px 8px; }
body.pa .grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 480px) { body.pa .grid2 { grid-template-columns: 1fr; } }
body.pa .fg { display: flex; flex-direction: column; gap: 7px; }
body.pa .fg.full { grid-column: 1 / -1; }
body.pa .fg .input, body.pa .fg textarea { width: 100%; }
body.pa .pwrow { display: flex; gap: 8px; }
body.pa .pwrow .input { flex: 1; }
body.pa .gen { flex: none; }
body.pa .derr { min-height: 18px; margin: 14px 0 4px; font-weight: 600; }
body.pa .dfoot { display: flex; justify-content: flex-end; gap: 10px;
  padding: 14px 24px 20px; border-top: 1px solid var(--line); }

body.pa #toasts {
  position: fixed; right: 18px; bottom: 18px; z-index: 300;
  display: flex; flex-direction: column; gap: 10px; max-width: min(360px, 90vw);
}
body.pa .toast {
  display: flex; align-items: center; gap: 11px; padding: 12px 16px;
  border-radius: 11px; font-weight: 600; font-size: 13.5px; color: var(--ink);
  background: var(--card); border: 1px solid var(--line);
  box-shadow: 0 16px 40px rgba(0,10,20,.22);
}
body.pa .toast .tdot { width: 8px; height: 8px; border-radius: 50%; flex: none; }
body.pa .toast.ok   .tdot { background: #0f7b4f; box-shadow: 0 0 0 4px rgba(15,123,79,.18); }
body.pa .toast.err  .tdot { background: #b42318; box-shadow: 0 0 0 4px rgba(180,35,24,.18); }
body.pa .toast.info .tdot { background: var(--navy); box-shadow: 0 0 0 4px var(--hover); }
body.pa .toast.out { opacity: 0; transform: translateX(40px); transition: opacity .35s, transform .35s; }
@media (max-width: 760px) { body.pa #toasts { left: 14px; right: 14px; bottom: 14px; max-width: none; } }

body.pa .panel { padding: 6px; position: relative; overflow: hidden; }
body.pa #tbl { min-width: 820px; }
body.pa .editable { display: inline-block; min-width: 54px; border: 1px solid transparent; }
body.pa .editable.editing { padding: 0; }
body.pa .editable input {
  width: 100%; min-width: 130px; padding: 7px 10px; background: var(--card);
  border: 1px solid var(--navy); border-radius: 8px; outline: none;
  font-family: var(--font-mono); font-size: 13px; color: var(--ink);
  box-shadow: 0 0 0 3px var(--hover);
}
[data-theme="dark"] body.pa .editable input { border-color: var(--gold); }
body.pa .ops { white-space: nowrap; }
body.pa .flash { animation: pa-flash .8s ease; }
@keyframes pa-flash { 0% { background: rgba(15,123,79,.22); } 100% { background: transparent; } }

/* the table collapses to one card per user on a phone; every td carries a
   data-label for exactly this */
@media (max-width: 760px) {
  body.pa #tbl, body.pa #tbl thead, body.pa #tbl tbody,
  body.pa #tbl tr, body.pa #tbl td { display: block; width: 100%; }
  body.pa #tbl { min-width: 0; }
  body.pa #tbl thead { position: absolute; left: -9999px; }
  body.pa #tbl tbody tr {
    margin: 12px 6px; border: 1px solid var(--line); border-radius: var(--radius);
    background: var(--card); overflow: hidden;
  }
  body.pa #tbl tbody td {
    border: 0; border-top: 1px solid var(--line); padding: 11px 15px;
    display: flex; justify-content: space-between; align-items: center; gap: 14px;
  }
  body.pa #tbl tbody td:first-child { border-top: 0; background: var(--hover); }
  body.pa #tbl tbody td::before {
    content: attr(data-label); font-family: var(--font-mono); font-size: 10px;
    font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
    color: var(--ink-faint); flex: none;
  }
  body.pa .editable { text-align: right; }
  body.pa .ops { justify-content: flex-end; }
  body.pa .stats { grid-template-columns: repeat(2, 1fr); }
}

/* ---- manage_generic_ids.php (Generic ID Vault) ----
   Same conversion as the SAP page: markup and class names untouched, the
   stylesheet swapped underneath. This page also carried a 307-line scoped
   "mission-control" retheme (teal/steel, dark-default) layered on top of
   glass-suite; the Hub skin replaces both. That theme still lives in /backup
   and /task-board, which are different apps and were not in scope. */
body.pa .gs-theme-toggle {
  display: inline-flex; align-items: center; gap: 7px;
  background: none; border: 1px solid var(--line); border-radius: 9px;
  padding: 7px 11px; cursor: pointer; color: var(--ink-soft);
  font-family: var(--font-mono); font-size: 11px; font-weight: 600; letter-spacing: .14em;
}
body.pa .gs-theme-toggle:hover { border-color: var(--navy); color: var(--ink); }
[data-theme="dark"] body.pa .gs-theme-toggle:hover { border-color: var(--gold); }
body.pa .gs-theme-toggle svg { width: 15px; height: 15px; flex: none; }
body.pa .gs-theme-toggle .tt-sun { display: none; }
[data-theme="dark"] body.pa .gs-theme-toggle .tt-sun { display: inline; }
[data-theme="dark"] body.pa .gs-theme-toggle .tt-moon { display: none; }

/* "needs attention" — a stale or unreset credential */
body.pa .seg button.attn.on { background: #a1670a; color: #fff; }
body.pa #tbl tbody tr.attn td:first-child { box-shadow: inset 3px 0 0 #a1670a; }
body.pa .staledot {
  width: 7px; height: 7px; border-radius: 50%; flex: none;
  background: #a1670a; box-shadow: 0 0 0 3px rgba(161,103,10,.18);
}
body.pa .reset { display: inline-flex; align-items: center; gap: 7px; }
body.pa .chip.locked { color: #a1670a; background: rgba(161,103,10,.12); }
body.pa .ic.warn:hover { border-color: #a1670a; color: #a1670a; }
body.pa #tbl tbody tr.removing { opacity: 0; transform: translateX(40px); transition: opacity .4s, transform .4s; }
