:root{
  --navy:#0b1d2c;
  --navy2:#122d41;
  --teal:#177f79;
  --teal2:#26a39a;
  --tealSoft:#e8f5f3;
  --gold:#caa45f;
  --ink:#172637;
  --muted:#6f7e89;
  --line:#e1e7ea;
  --surface:#f5f7f8;
  --white:#fff;
  --success:#24765d;
  --successSoft:#e7f4ef;
  --warning:#a86b17;
  --warningSoft:#fff2dc;
  --danger:#b84f4f;
  --dangerSoft:#faecec;
  --shadow:0 12px 32px rgba(11,29,44,.07);
  --radius:18px;
}

*{box-sizing:border-box}
html,body{margin:0;min-height:100%;font-family:Inter,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;background:var(--surface);color:var(--ink)}
button,input,select,textarea{font:inherit}
button{cursor:pointer}
a{color:inherit;text-decoration:none}

.admin-shell{display:grid;grid-template-columns:270px 1fr;min-height:100vh}

.sidebar{
  position:sticky;
  top:0;
  height:100vh;
  padding:20px 16px 16px;
  background:linear-gradient(180deg,#0c2030 0%,#081620 100%);
  color:#fff;
  display:flex;
  flex-direction:column;
  z-index:40;
}

.brand{display:flex;gap:12px;align-items:center;padding:2px 8px 22px}
.brand img{
  width:48px;height:48px;
  border-radius:13px;
  background:#fff;
  padding:7px;
}
.brand strong{display:block;letter-spacing:.14em;font-size:14px}
.brand span{display:block;color:#92a6b2;font-size:11px;margin-top:4px}

.nav-label{
  color:#738995;
  font-size:10px;
  letter-spacing:.15em;
  font-weight:800;
  padding:0 10px 10px;
}

.nav{overflow:auto;display:flex;flex-direction:column;gap:4px;padding-right:2px}

.nav-item{
  border:0;
  background:transparent;
  color:#b8c6ce;
  border-radius:13px;
  display:flex;
  align-items:center;
  gap:11px;
  width:100%;
  text-align:left;
  padding:9px 10px;
  transition:.18s ease;
}

.nav-item:hover{background:rgba(255,255,255,.055)}
.nav-item.active{
  background:rgba(23,127,121,.20);
  box-shadow:inset 3px 0 0 var(--teal2);
}

.nav-icon{
  width:31px;height:31px;
  border-radius:9px;
  border:1px solid rgba(255,255,255,.13);
  display:grid;
  place-items:center;
  flex:0 0 auto;
  font-weight:800;
  font-size:12px;
}

.nav-item.active .nav-icon{
  background:var(--teal);
  border-color:var(--teal);
  color:#fff;
}

.nav-item strong{display:block;font-size:12.5px;color:#e0e8ec}
.nav-item small{display:block;font-size:10px;color:#758a96;margin-top:2px}
.nav-item.active small{color:#9fd7d2}

.nav-divider{height:1px;background:rgba(255,255,255,.08);margin:8px 10px}

.admin-profile{
  margin-top:auto;
  border-top:1px solid rgba(255,255,255,.08);
  padding:14px 7px 0;
  display:flex;
  align-items:center;
  gap:10px;
}

.avatar{
  width:37px;height:37px;
  border-radius:11px;
  display:grid;
  place-items:center;
  background:linear-gradient(145deg,var(--gold),#ebcf99);
  color:var(--navy);
  font-size:11px;
  font-weight:900;
}

.profile-copy{flex:1;min-width:0}
.profile-copy strong{display:block;font-size:11px}
.profile-copy span{display:block;font-size:9px;color:#79909d;margin-top:2px}
.admin-profile button{background:none;border:0;color:#8297a3;font-size:18px}

.main{min-width:0}

.topbar{
  height:84px;
  position:sticky;
  top:0;
  z-index:30;
  background:rgba(255,255,255,.95);
  backdrop-filter:blur(12px);
  border-bottom:1px solid var(--line);
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 32px;
}

.title-wrap{display:flex;align-items:center;gap:12px}
.eyebrow{font-size:9px;font-weight:900;letter-spacing:.14em;color:var(--teal)}
.topbar h2{margin:3px 0 0;font-size:20px}
.menu-toggle{display:none;border:0;background:none;font-size:22px}

.top-actions{display:flex;gap:10px;align-items:center}
.marketplace-link{
  border:1px solid var(--line);
  background:#fff;
  border-radius:10px;
  padding:9px 13px;
  font-size:11px;
  font-weight:800;
}
.system-status{
  border:1px solid #d9e9e6;
  background:#f8fffd;
  border-radius:999px;
  padding:9px 12px;
  font-size:10px;
  color:#48645f;
}
.system-status i{
  display:inline-block;
  width:7px;height:7px;
  border-radius:50%;
  background:#35a578;
  margin-right:6px;
}

.content{
  padding:27px 32px 60px;
  max-width:1600px;
  margin:auto;
}

.section-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:18px;
  margin-bottom:18px;
}
.section-head h1{margin:0;font-size:26px}
.section-head p{margin:6px 0 0;color:var(--muted);font-size:12px;max-width:760px;line-height:1.5}

.kpis{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:14px;
  margin-bottom:16px;
}

.kpi{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:16px;
  padding:16px;
  box-shadow:0 5px 18px rgba(11,29,44,.025);
}
.kpi .label{
  font-size:10px;
  color:var(--muted);
  text-transform:uppercase;
  letter-spacing:.055em;
  font-weight:800;
}
.kpi strong{
  display:block;
  font-size:27px;
  color:var(--navy);
  margin:7px 0 4px;
}
.kpi small{font-size:10px;color:var(--muted)}

.grid-2{
  display:grid;
  grid-template-columns:1.3fr .7fr;
  gap:16px;
  margin-bottom:16px;
}

.panel{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:0 5px 22px rgba(11,29,44,.03);
  overflow:hidden;
}

.panel-head{
  padding:17px 19px;
  border-bottom:1px solid var(--line);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.panel-head h3{margin:0;font-size:14px}
.panel-body{padding:18px 19px}

.funnel{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:7px;
}
.funnel-item{
  background:linear-gradient(180deg,#fafdfd,var(--tealSoft));
  border:1px solid #dbe9e7;
  border-radius:12px;
  text-align:center;
  padding:13px 7px;
}
.funnel-item strong{display:block;font-size:20px;color:var(--navy)}
.funnel-item span{font-size:9px;color:var(--muted)}

.priority-list{display:flex;flex-direction:column;gap:9px}
.priority{
  display:flex;
  gap:10px;
  align-items:center;
  border:1px solid var(--line);
  border-radius:12px;
  padding:10px;
}
.dot{width:8px;height:8px;border-radius:50%;background:var(--gold)}
.priority strong{display:block;font-size:11px}
.priority span{font-size:9px;color:var(--muted)}

.table-wrap{overflow:auto}
table{
  width:100%;
  border-collapse:collapse;
  min-width:820px;
}
th{
  background:#f8fafb;
  font-size:9px;
  text-transform:uppercase;
  letter-spacing:.045em;
  color:#74818a;
  padding:11px 13px;
  text-align:left;
  border-bottom:1px solid var(--line);
}
td{
  padding:12px 13px;
  border-bottom:1px solid #edf0f2;
  font-size:11px;
}
tr:last-child td{border-bottom:0}
.entity strong{display:block;font-size:11px}
.entity small{display:block;color:var(--muted);font-size:9px;margin-top:3px}

.badge{
  display:inline-flex;
  padding:5px 9px;
  border-radius:999px;
  font-size:9px;
  font-weight:800;
}
.success{background:var(--successSoft);color:var(--success)}
.warning{background:var(--warningSoft);color:var(--warning)}
.danger{background:var(--dangerSoft);color:var(--danger)}
.neutral{background:#edf1f3;color:#5d6870}

.primary,.secondary,.table-btn{
  border-radius:10px;
  font-weight:800;
}
.primary{
  border:0;
  background:var(--navy);
  color:#fff;
  padding:10px 14px;
}
.secondary{
  background:#fff;
  border:1px solid var(--line);
  padding:10px 14px;
  color:var(--ink);
}
.table-btn{
  background:#fff;
  border:1px solid var(--line);
  padding:7px 9px;
  font-size:9px;
}
.table-btn.red{color:var(--danger)}
.table-btn.green{color:var(--success)}

.tools{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}
.control{
  border:1px solid var(--line);
  background:#fff;
  border-radius:10px;
  padding:9px 11px;
  font-size:10px;
}

.form-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
}
.field label{
  display:block;
  font-size:10px;
  font-weight:800;
  margin-bottom:6px;
}
.field input,.field select,.field textarea{
  width:100%;
  border:1px solid var(--line);
  border-radius:10px;
  padding:11px;
  background:#fff;
}
.field small{color:var(--muted);font-size:9px;display:block;margin-top:5px}
.field textarea{min-height:100px;resize:vertical}
.actions{display:flex;justify-content:flex-end;gap:8px;margin-top:15px}

.setting{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:18px;
  padding:13px 0;
  border-bottom:1px solid var(--line);
}
.setting:last-child{border-bottom:0}
.setting strong{display:block;font-size:11px}
.setting span{display:block;color:var(--muted);font-size:9px;margin-top:3px}
.toggle{
  width:42px;height:23px;
  border-radius:999px;
  border:0;
  background:#cbd4d9;
  position:relative;
}
.toggle:after{
  content:"";
  position:absolute;
  top:3px;left:3px;
  width:17px;height:17px;
  border-radius:50%;
  background:#fff;
  transition:.18s;
}
.toggle.on{background:var(--teal)}
.toggle.on:after{left:22px}

.metric-list{display:flex;flex-direction:column;gap:12px}
.metric{
  display:grid;
  grid-template-columns:130px 1fr 45px;
  gap:10px;
  align-items:center;
  font-size:10px;
}
.track{height:8px;background:#edf1f3;border-radius:999px;overflow:hidden}
.fill{height:100%;background:linear-gradient(90deg,var(--teal),#6dc0b8)}

.audit-row{
  display:grid;
  grid-template-columns:130px 120px 1fr 100px;
  gap:10px;
  padding:11px 0;
  border-bottom:1px solid var(--line);
  font-size:10px;
}
.audit-row:last-child{border-bottom:0}
.audit-row span{color:var(--muted)}

.notice{
  border:1px solid #dbe9e7;
  background:#f6fffd;
  border-radius:11px;
  padding:11px 13px;
  font-size:10px;
  color:#496762;
}

.gate{
  position:fixed;
  inset:0;
  z-index:200;
  background:linear-gradient(145deg,#07141f,#123249);
  display:grid;
  place-items:center;
  padding:20px;
}
.gate.hidden{display:none}
.gate-card{
  width:min(430px,100%);
  background:#fff;
  border-radius:24px;
  padding:30px;
  box-shadow:0 35px 100px rgba(0,0,0,.35);
}
.gate-card img{
  width:180px;
  height:auto;
  object-fit:contain;
  margin-bottom:18px;
}
.gate-card h1{font-size:26px;margin:6px 0 8px}
.gate-card p{font-size:11px;line-height:1.5;color:var(--muted)}
.gate-card label{
  display:block;
  font-size:10px;
  font-weight:800;
  margin-top:13px;
}
.gate-card input,.gate-card select{
  width:100%;
  margin-top:6px;
  padding:11px;
  border-radius:10px;
  border:1px solid var(--line);
}
.wide{width:100%;margin-top:18px;padding:12px}
.return-link{
  display:block;
  text-align:center;
  color:var(--muted);
  margin-top:13px;
  font-size:10px;
}
.gate-note{
  margin-top:20px;
  border-top:1px solid var(--line);
  padding-top:14px;
  color:#82909a;
  font-size:9px;
  line-height:1.45;
}

@media(max-width:1120px){
  .kpis{grid-template-columns:repeat(2,1fr)}
  .grid-2{grid-template-columns:1fr}
}

@media(max-width:820px){
  .admin-shell{display:block}
  .sidebar{
    position:fixed;
    left:-285px;
    width:270px;
    transition:.2s;
    box-shadow:20px 0 50px rgba(0,0,0,.18);
  }
  .sidebar.open{left:0}
  .menu-toggle{display:block}
  .topbar{height:75px;padding:0 16px}
  .system-status{display:none}
  .content{padding:19px 15px 80px}
  .topbar h2{font-size:16px}
  .funnel{grid-template-columns:repeat(3,1fr)}
  .form-grid{grid-template-columns:1fr}
  .audit-row{grid-template-columns:90px 1fr}
  .audit-row>:nth-child(3),.audit-row>:nth-child(4){grid-column:2}
}

@media(max-width:520px){
  .kpis{grid-template-columns:1fr 1fr;gap:9px}
  .kpi{padding:13px}
  .kpi strong{font-size:21px}
  .section-head{display:block}
  .marketplace-link{display:none}
}


/* RC1.1 Final Premium Polish */

.nav-section{
  padding:13px 10px 6px;
  color:#637d8a;
  font-size:8px;
  letter-spacing:.15em;
  font-weight:900;
}

.grid-2{
  align-items:start;
}

.funnel-item small{
  display:block;
  margin-top:5px;
  font-size:8px;
  color:#6f7e89;
  font-weight:700;
}

.click-card,
.priority.clickable{
  cursor:pointer;
  transition:.18s ease;
}

.click-card:hover,
.priority.clickable:hover{
  transform:translateY(-1px);
  border-color:#cbdcdd;
  box-shadow:0 8px 24px rgba(11,29,44,.07);
}

.system-meta{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:4px;
}

.updated{
  font-size:8px;
  color:#8a979f;
  padding-right:7px;
}

.dashboard-toolbar{
  display:flex;
  align-items:center;
  gap:8px;
}

.period-select{
  min-width:120px;
}

.funnel-context{
  color:#77858e;
  font-size:9px;
}

@media(max-width:820px){
  .updated{display:none}
  .dashboard-toolbar{
    margin-top:12px;
    justify-content:flex-start;
  }
}


/* =========================================================
   RC1.1.1 — UNIFIED THEO ADMIN WORKSPACE DESIGN LOCK
   Align administration with the established Theo dashboards
   ========================================================= */

:root{
  --workspace-sidebar: 268px;
}

/* Main shell */
.admin-shell{
  grid-template-columns:var(--workspace-sidebar) 1fr;
}

/* Sidebar — match Theo workspace proportions */
.sidebar{
  width:var(--workspace-sidebar);
  padding:18px 16px 16px;
  background:#0d2031;
}

/* Brand */
.brand{
  padding:2px 12px 18px;
  gap:11px;
}

.brand img{
  width:44px;
  height:44px;
  border-radius:11px;
  padding:6px;
}

.brand strong{
  font-size:13px;
  letter-spacing:.13em;
}

.brand span{
  font-size:10px;
}

/* Group labels */
.nav-label{
  padding:2px 12px 8px;
  font-size:9px;
  color:#778b98;
}

.nav-section{
  padding:12px 12px 5px;
  font-size:8px;
  color:#6f8592;
}

/* Navigation — compact like main Theo dashboard */
.nav{
  gap:2px;
}

.nav-item{
  min-height:48px;
  padding:7px 9px;
  gap:10px;
  border-radius:11px;
}

.nav-item:hover{
  background:rgba(255,255,255,.045);
}

.nav-item.active{
  background:#17374b;
  box-shadow:inset 3px 0 0 #d0a85d;
}

.nav-icon{
  width:34px;
  height:34px;
  border-radius:10px;
}

.nav-item.active .nav-icon{
  background:#244c60;
  border-color:#527183;
  color:#f0cf8b;
}

.nav-item strong{
  font-size:12px;
}

.nav-item small{
  font-size:9px;
  margin-top:1px;
}

/* Account footer */
.admin-profile{
  padding:13px 9px 2px;
}

.avatar{
  width:36px;
  height:36px;
  border-radius:10px;
}

.profile-copy strong{
  font-size:11px;
}

.profile-copy span{
  font-size:9px;
}

/* Header — match other Theo workspaces */
.topbar{
  height:78px;
  padding:0 30px;
  background:#fff;
}

.topbar h2{
  font-size:16px;
  font-weight:800;
}

.eyebrow{
  font-size:8px;
  color:#a87536;
}

/* Main workspace */
.content{
  padding:26px 30px 56px;
}

.section-head{
  margin-bottom:17px;
}

.section-head h1{
  font-size:25px;
  letter-spacing:-.025em;
}

.section-head p{
  font-size:11px;
}

/* KPI cards — same density as landlord dashboard */
.kpis{
  gap:12px;
  margin-bottom:15px;
}

.kpi{
  min-height:112px;
  padding:15px 16px;
  border-radius:15px;
  box-shadow:none;
}

.kpi .label{
  font-size:9px;
}

.kpi strong{
  margin:6px 0 3px;
  font-size:25px;
}

.kpi small{
  font-size:9px;
}

/* Panels */
.panel{
  border-radius:16px;
  box-shadow:none;
}

.panel-head{
  padding:15px 18px;
}

.panel-head h3{
  font-size:13px;
}

.panel-body{
  padding:17px 18px;
}

/* Executive dashboard */
.grid-2{
  grid-template-columns:minmax(0,1.45fr) minmax(300px,.55fr);
  gap:14px;
}

.funnel{
  gap:7px;
}

.funnel-item{
  min-height:84px;
  padding:12px 6px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.funnel-item strong{
  font-size:19px;
}

.funnel-item span{
  font-size:9px;
}

.funnel-item small{
  font-size:7.5px;
}

.priority{
  min-height:55px;
  padding:10px 12px;
}

.priority strong{
  font-size:10.5px;
}

.priority span{
  font-size:9px;
}

/* Demand intelligence */
.metric{
  grid-template-columns:120px 1fr 42px;
}

/* Tables */
table{
  min-width:760px;
}

th{
  padding:10px 12px;
}

td{
  padding:11px 12px;
}

/* Buttons / controls */
.control{
  min-height:38px;
  padding:8px 10px;
}

.primary,
.secondary{
  min-height:39px;
}

/* Responsive behaviour — keep desktop Theo shell longer */
@media(max-width:720px){

  .admin-shell{
    display:block;
  }

  .sidebar{
    position:fixed;
    width:268px;
    left:-284px;
    z-index:60;
  }

  .sidebar.open{
    left:0;
  }

  .topbar{
    height:70px;
    padding:0 15px;
  }

  .menu-toggle{
    display:block;
  }

  .content{
    padding:18px 14px 80px;
  }

  .kpis{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .grid-2{
    grid-template-columns:1fr;
  }

  .funnel{
    grid-template-columns:repeat(3,1fr);
  }
}

@media(max-width:430px){

  .kpi{
    min-height:100px;
  }

  .section-head h1{
    font-size:22px;
  }
}


/* =======================================================
   THEO PROPERTIES RC1.1.2
   SUPER ADMIN DASHBOARD DESIGN LOCK
   ======================================================= */

.admin-shell{
  grid-template-columns:268px minmax(0,1fr) !important;
}

.sidebar{
  width:268px !important;
  padding:20px 16px 14px !important;
  background:#0c2132 !important;
}

.brand{
  padding:2px 9px 12px !important;
}

.brand img{
  width:42px !important;
  height:42px !important;
  background:#fff !important;
  border-radius:10px !important;
}

.brand strong{
  font-size:13px !important;
  letter-spacing:.13em !important;
}

.brand span{
  font-size:9px !important;
}

.nav-label{
  padding:6px 9px 5px !important;
  font-size:7.5px !important;
}

.nav{
  flex:1;
  min-height:0;
  overflow-y:auto;
  gap:2px !important;
  padding-right:2px;
  padding-bottom:8px;
}

.nav-section{
  padding:12px 9px 5px !important;
  color:#7c919d !important;
  font-size:7.5px !important;
  letter-spacing:.15em !important;
  font-weight:900 !important;
}

.nav-item{
  min-height:45px !important;
  padding:6px 8px !important;
  gap:9px !important;
  border-radius:10px !important;
}

.nav-item.active{
  background:#17394d !important;
  box-shadow:inset 3px 0 0 #d3aa60 !important;
}

.nav-icon{
  width:33px !important;
  height:33px !important;
  flex:0 0 33px !important;
  display:grid !important;
  place-items:center !important;
  border:1px solid #324b5e !important;
  border-radius:9px !important;
  color:#b4c6d0 !important;
  background:#10293a !important;
}

.nav-icon svg{
  width:17px;
  height:17px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.nav-item.active .nav-icon{
  color:#e5bd71 !important;
  border-color:#567488 !important;
  background:#284d62 !important;
}

.nav-copy{
  flex:1;
  min-width:0;
}

.nav-copy strong{
  display:block;
  color:#edf3f6 !important;
  font-size:10.5px !important;
  line-height:1.15;
}

.nav-copy small{
  display:block;
  color:#8296a2 !important;
  font-size:8px !important;
  line-height:1.15;
  margin-top:2px;
}

.nav-arrow{
  color:#718a98;
  font-size:14px;
}

.nav-item.active .nav-arrow{
  color:#d4ac63;
}

.admin-profile{
  flex:0 0 auto;
  min-height:59px;
  padding:10px 8px 0 !important;
  background:#0c2132 !important;
}

.avatar{
  width:36px !important;
  height:36px !important;
  border-radius:10px !important;
}

.profile-copy strong{
  font-size:10px !important;
}

.profile-copy span{
  font-size:8px !important;
}


/* HEADER */

.topbar{
  height:76px !important;
  padding:0 30px !important;
  background:#fff !important;
  border-bottom:1px solid #e2e8eb !important;
}

.top-brand{
  display:flex;
  align-items:center;
  gap:14px;
}

.top-logo{
  width:170px;
  height:51px;
  object-fit:contain;
}

.top-divider{
  width:1px;
  height:34px;
  background:#dfe5e8;
}

.top-context span{
  display:block;
  color:#7d8b97;
  font-size:8px;
  letter-spacing:.12em;
  font-weight:900;
}

.top-context strong{
  display:block;
  color:#132535;
  font-size:12px;
  margin-top:3px;
}

.top-actions{
  display:flex;
  align-items:center;
  gap:10px;
}

.live-platform{
  display:inline-flex;
  align-items:center;
  gap:7px;
  background:#e9f7f2;
  color:#397565;
  border-radius:999px;
  padding:8px 12px;
  font-size:9px;
  font-weight:800;
}

.live-platform i{
  width:7px;
  height:7px;
  border-radius:50%;
  background:#22a878;
}

.admin-search{
  width:200px;
  height:37px;
  display:flex;
  align-items:center;
  gap:7px;
  border:1px solid #dde5e8;
  border-radius:10px;
  padding:0 11px;
}

.admin-search svg{
  width:16px;
  height:16px;
  fill:none;
  stroke:#61717d;
  stroke-width:1.8;
}

.admin-search input{
  width:100%;
  border:0;
  outline:0;
  font-size:9px;
  background:transparent;
}

.top-icon-btn{
  position:relative;
  width:37px;
  height:37px;
  display:grid;
  place-items:center;
  border:1px solid #dde5e8;
  border-radius:50%;
  background:#fff;
}

.top-icon-btn svg{
  width:17px;
  height:17px;
  fill:none;
  stroke:#183247;
  stroke-width:1.8;
}

.top-icon-btn span{
  position:absolute;
  top:-4px;
  right:-3px;
  width:16px;
  height:16px;
  border-radius:50%;
  background:#df3545;
  color:#fff;
  display:grid;
  place-items:center;
  font-size:7px;
  font-weight:900;
}

.top-user{
  width:38px;
  height:38px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:#edf1f3;
  color:#173044;
  font-size:10px;
  font-weight:900;
}


/* MAIN WORKSPACE */

.content{
  max-width:none !important;
  padding:25px 30px 45px !important;
  background:#f7f9fa;
}

.section-head{
  margin-bottom:15px !important;
}

.section-head h1{
  font-size:29px !important;
  letter-spacing:-.035em;
}

.section-head p{
  font-size:10.5px !important;
}


/* KPI */

.kpis{
  grid-template-columns:repeat(5,minmax(0,1fr)) !important;
  gap:12px !important;
}

.kpi{
  min-height:120px !important;
  padding:15px 16px !important;
  border:1px solid #e1e7ea !important;
  border-radius:13px !important;
  box-shadow:0 5px 18px rgba(15,42,61,.035) !important;
}

.kpi .label{
  font-size:8px !important;
}

.kpi strong{
  font-size:25px !important;
  margin:7px 0 5px !important;
}


/* APPROVED EXECUTIVE GRID */

.executive-grid{
  display:grid;
  grid-template-columns:minmax(0,1.65fr) minmax(250px,.65fr) minmax(260px,.7fr);
  gap:14px;
  margin-top:14px;
}

.panel{
  border-radius:14px !important;
  box-shadow:0 5px 22px rgba(15,42,61,.035) !important;
}

.panel-head{
  padding:14px 16px !important;
}

.panel-body{
  padding:15px 16px !important;
}

.chart-panel{
  min-height:305px;
}

.activity-chart{
  width:100%;
  height:218px;
}

.activity-chart text{
  font-size:8px;
  fill:#7a8a95;
}

.chart-grid{
  stroke:#e9edef;
  stroke-width:1;
}

.chart-properties{
  fill:none;
  stroke:#173f64;
  stroke-width:2.5;
}

.chart-applications{
  fill:none;
  stroke:#d8a33c;
  stroke-width:2.5;
}

.chart-viewings{
  fill:none;
  stroke:#228c73;
  stroke-width:2.5;
}

.chart-fill{
  fill:url(#activityArea);
  opacity:.45;
}

.chart-legend{
  display:flex;
  justify-content:center;
  gap:22px;
  margin-top:5px;
  font-size:8px;
  color:#6e7f8a;
}

.chart-legend i{
  width:8px;
  height:8px;
  display:inline-block;
  border-radius:50%;
  margin-right:5px;
}

.conversion-list{
  display:flex;
  flex-direction:column;
  gap:7px;
}

.conversion-step{
  display:grid;
  grid-template-columns:34px 1fr auto;
  align-items:center;
  gap:8px;
  min-height:39px;
  padding:6px 8px;
  background:#f8fafb;
  border-radius:9px;
}

.conversion-icon{
  width:32px;
  height:32px;
  display:grid;
  place-items:center;
  background:#eaf3f6;
  border-radius:8px;
  color:#186c95;
}

.conversion-icon svg{
  width:16px;
  height:16px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.8;
}

.conversion-step strong{
  display:block;
  font-size:9px;
}

.conversion-step small{
  display:block;
  color:#7c8b94;
  font-size:7.5px;
}

.conversion-number{
  text-align:right;
}

.conversion-number strong{
  font-size:10px;
}

.conversion-number small{
  font-size:7px;
}

.priority-list{
  gap:8px !important;
}

.priority{
  min-height:50px !important;
  border-radius:10px !important;
}

.priority strong{
  font-size:9px !important;
}

.priority span{
  font-size:7.5px !important;
}

.priority-count{
  background:#e33a48;
  color:#fff;
  width:23px;
  height:23px;
  display:grid;
  place-items:center;
  border-radius:50%;
  font-size:8px;
  font-weight:900;
}


/* LOWER DASHBOARD */

.lower-dashboard{
  display:grid;
  grid-template-columns:1.55fr .85fr;
  gap:14px;
  margin-top:14px;
}

.recent-table{
  width:100%;
  min-width:0;
}

.recent-table th,
.recent-table td{
  padding:8px 8px !important;
  font-size:8px !important;
}

.property-cell{
  display:flex;
  align-items:center;
  gap:8px;
}

.property-thumb{
  width:45px;
  height:30px;
  border-radius:5px;
  object-fit:cover;
}

.health-list{
  display:flex;
  flex-direction:column;
}

.health-row{
  display:grid;
  grid-template-columns:28px 1fr auto;
  align-items:center;
  gap:8px;
  min-height:39px;
  border-bottom:1px solid #edf0f2;
  font-size:8px;
}

.health-row:last-child{
  border-bottom:0;
}

.health-icon{
  width:27px;
  height:27px;
  display:grid;
  place-items:center;
  border-radius:7px;
  background:#f4f7f8;
}

.health-status{
  color:#278568;
  font-weight:800;
}

.health-status.pending{
  color:#a66a18;
}


/* RESPONSIVE */

@media(max-width:1250px){
  .kpis{
    grid-template-columns:repeat(3,1fr) !important;
  }

  .executive-grid{
    grid-template-columns:1.4fr .8fr;
  }

  .priority-panel{
    grid-column:1/-1;
  }

  .lower-dashboard{
    grid-template-columns:1fr;
  }
}

@media(max-width:820px){
  .top-logo{
    width:130px;
  }

  .admin-search{
    display:none;
  }

  .kpis{
    grid-template-columns:repeat(2,1fr) !important;
  }

  .executive-grid{
    grid-template-columns:1fr;
  }

  .lower-dashboard{
    grid-template-columns:1fr;
  }
}


/* RC1.1.3 — LIVE ADMIN INTELLIGENCE */

.panel-context{
  display:block;
  margin-top:3px;
  font-size:8px;
  color:#7b8994;
}

.snapshot-chart{
  display:flex;
  flex-direction:column;
  gap:15px;
  padding:9px 2px 12px;
}

.snapshot-row{
  display:grid;
  grid-template-columns:105px 1fr 40px;
  gap:12px;
  align-items:center;
  width:100%;
  border:0;
  background:transparent;
  padding:2px 0;
  text-align:left;
  cursor:pointer;
}

.snapshot-label{
  font-size:9px;
  font-weight:800;
}

.snapshot-track{
  height:12px;
  background:#edf2f4;
  border-radius:999px;
  overflow:hidden;
}

.snapshot-fill{
  display:block;
  height:100%;
  border-radius:999px;
  background:linear-gradient(90deg,#177f79,#67bcb2);
}

.snapshot-row:nth-child(2) .snapshot-fill{
  background:linear-gradient(90deg,#234f73,#6d98b7);
}

.snapshot-row:nth-child(3) .snapshot-fill{
  background:linear-gradient(90deg,#bd8934,#e1b964);
}

.snapshot-row:nth-child(4) .snapshot-fill{
  background:linear-gradient(90deg,#446f86,#75a5b7);
}

.snapshot-row:nth-child(5) .snapshot-fill{
  background:linear-gradient(90deg,#a85f4b,#ca8b77);
}

.snapshot-row strong{
  text-align:right;
  font-size:11px;
}

.snapshot-note{
  border-top:1px solid #edf0f2;
  padding-top:12px;
  margin-top:6px;
  color:#84919a;
  font-size:8px;
}

.priority-clear{
  border:1px solid #dfebe7;
  background:#f8fffc;
  color:#467066;
  border-radius:10px;
  padding:15px;
  font-size:9px;
}



/* =========================================================
   RC1.1.3 — PREMIUM TYPOGRAPHY & SPACING LOCK
   ========================================================= */

:root{
  --admin-font:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
}

body{
  font-family:var(--admin-font) !important;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}


/* ---------------------------------------------------------
   PAGE / CONTENT RHYTHM
   --------------------------------------------------------- */

.content{
  padding:28px 32px 52px !important;
}

.section-head{
  margin-bottom:18px !important;
  align-items:center !important;
}

.section-head h1{
  margin:0 !important;
  font-size:28px !important;
  line-height:1.08 !important;
  font-weight:750 !important;
  letter-spacing:-.035em !important;
  color:#17283a !important;
}

.section-head p{
  margin:7px 0 0 !important;
  font-size:11px !important;
  line-height:1.5 !important;
  color:#70808c !important;
}


/* ---------------------------------------------------------
   TOP HEADER
   --------------------------------------------------------- */

.topbar{
  height:78px !important;
  padding:0 32px !important;
}

.top-context span{
  font-size:8px !important;
  line-height:1 !important;
  letter-spacing:.13em !important;
  font-weight:800 !important;
}

.top-context strong{
  margin-top:5px !important;
  font-size:12px !important;
  line-height:1.15 !important;
  font-weight:750 !important;
}

.live-platform{
  min-height:34px !important;
  padding:8px 13px !important;
  font-size:9px !important;
  font-weight:750 !important;
}

.admin-search{
  width:220px !important;
  height:38px !important;
}

.admin-search input{
  font-size:10px !important;
}


/* ---------------------------------------------------------
   SIDEBAR
   --------------------------------------------------------- */

.brand{
  padding:2px 9px 14px !important;
}

.brand strong{
  font-size:13px !important;
  line-height:1.1 !important;
}

.brand span{
  margin-top:3px !important;
  font-size:9px !important;
  line-height:1.2 !important;
}

.nav-label,
.nav-section{
  font-weight:800 !important;
  letter-spacing:.14em !important;
}

.nav-section{
  padding:13px 9px 6px !important;
  font-size:7.5px !important;
}

.nav-item{
  min-height:46px !important;
  padding:6px 8px !important;
  gap:10px !important;
}

.nav-copy strong{
  font-size:10.5px !important;
  line-height:1.2 !important;
  font-weight:700 !important;
  letter-spacing:-.005em !important;
}

.nav-copy small{
  margin-top:3px !important;
  font-size:8.25px !important;
  line-height:1.2 !important;
}

.profile-copy strong{
  font-size:10.5px !important;
  line-height:1.2 !important;
}

.profile-copy span{
  margin-top:2px !important;
  font-size:8.5px !important;
}


/* ---------------------------------------------------------
   KPI SYSTEM
   --------------------------------------------------------- */

.kpis{
  gap:14px !important;
  margin-bottom:16px !important;
}

.kpi{
  min-height:112px !important;
  padding:16px 17px !important;
  border-radius:14px !important;
}

.kpi .label{
  font-size:8.25px !important;
  line-height:1.2 !important;
  letter-spacing:.08em !important;
  font-weight:800 !important;
}

.kpi strong{
  margin:9px 0 6px !important;
  font-size:25px !important;
  line-height:1 !important;
  font-weight:750 !important;
  letter-spacing:-.025em !important;
}

.kpi small{
  font-size:9px !important;
  line-height:1.35 !important;
  color:#74838e !important;
}


/* ---------------------------------------------------------
   EXECUTIVE PANELS
   --------------------------------------------------------- */

.executive-grid{
  gap:16px !important;
  margin-top:16px !important;
}

.panel{
  border-radius:14px !important;
}

.panel-head{
  min-height:57px !important;
  padding:15px 18px !important;
}

.panel-head h3{
  margin:0 !important;
  font-size:12.5px !important;
  line-height:1.15 !important;
  font-weight:750 !important;
  letter-spacing:-.01em !important;
}

.panel-context{
  margin-top:4px !important;
  font-size:8.5px !important;
  line-height:1.3 !important;
}

.panel-body{
  padding:18px !important;
}


/* ---------------------------------------------------------
   OPERATIONAL ACTIVITY
   --------------------------------------------------------- */

.snapshot-chart{
  gap:16px !important;
  padding:8px 1px 12px !important;
}

.snapshot-row{
  grid-template-columns:112px 1fr 38px !important;
  gap:13px !important;
  min-height:24px !important;
}

.snapshot-label{
  font-size:9.5px !important;
  line-height:1.2 !important;
  font-weight:700 !important;
}

.snapshot-track{
  height:11px !important;
}

.snapshot-row strong{
  font-size:10.5px !important;
  line-height:1 !important;
  font-weight:750 !important;
}

.snapshot-note{
  margin-top:9px !important;
  padding-top:13px !important;
  font-size:8.5px !important;
  line-height:1.4 !important;
}


/* ---------------------------------------------------------
   CONVERSION FUNNEL
   --------------------------------------------------------- */

.conversion-list{
  gap:8px !important;
}

.conversion-step{
  min-height:44px !important;
  padding:8px 10px !important;
  border-radius:9px !important;
}

.conversion-step > div:first-child strong{
  font-size:9px !important;
  line-height:1.25 !important;
  font-weight:700 !important;
}

.conversion-number strong{
  font-size:10.5px !important;
  line-height:1 !important;
  font-weight:750 !important;
}

.conversion-number small{
  margin-top:3px !important;
  display:block !important;
  font-size:7.5px !important;
  line-height:1 !important;
}


/* ---------------------------------------------------------
   PRIORITY ACTIONS
   --------------------------------------------------------- */

.priority-list{
  gap:9px !important;
}

.priority{
  min-height:55px !important;
  padding:10px 12px !important;
  border-radius:10px !important;
}

.priority strong{
  font-size:9.25px !important;
  line-height:1.25 !important;
  font-weight:700 !important;
}

.priority span{
  margin-top:3px !important;
  font-size:7.75px !important;
  line-height:1.3 !important;
}

.priority-count{
  width:24px !important;
  height:24px !important;
  font-size:8px !important;
}


/* ---------------------------------------------------------
   LOWER DASHBOARD
   --------------------------------------------------------- */

.lower-dashboard{
  gap:16px !important;
  margin-top:16px !important;
}


/* ---------------------------------------------------------
   TABLES
   --------------------------------------------------------- */

.recent-table th,
table th{
  padding:10px 10px !important;
  font-size:7.75px !important;
  line-height:1.2 !important;
  letter-spacing:.07em !important;
  font-weight:800 !important;
  color:#74838e !important;
}

.recent-table td,
table td{
  padding:10px !important;
  font-size:9px !important;
  line-height:1.35 !important;
}

.recent-table td strong,
.entity strong{
  font-size:9.25px !important;
  font-weight:700 !important;
}

.entity small{
  margin-top:3px !important;
  font-size:8px !important;
}


/* ---------------------------------------------------------
   STATUS / BADGES
   --------------------------------------------------------- */

.badge{
  padding:5px 9px !important;
  font-size:7.75px !important;
  line-height:1 !important;
  font-weight:800 !important;
}

.table-btn{
  min-height:31px !important;
  padding:7px 10px !important;
  font-size:8.5px !important;
}


/* ---------------------------------------------------------
   RC INTEGRATION STATUS
   --------------------------------------------------------- */

.health-row{
  min-height:44px !important;
  padding:3px 0 !important;
  font-size:8.75px !important;
}

.health-row strong{
  font-size:8.75px !important;
  line-height:1.25 !important;
}

.health-status{
  font-size:8.25px !important;
  line-height:1.2 !important;
}


/* ---------------------------------------------------------
   CONTROLS / FORMS
   --------------------------------------------------------- */

.control{
  min-height:38px !important;
  padding:8px 11px !important;
  font-size:9.5px !important;
}

.primary,
.secondary{
  min-height:38px !important;
  padding:9px 14px !important;
  font-size:9.5px !important;
  font-weight:750 !important;
}


/* ---------------------------------------------------------
   MOBILE
   --------------------------------------------------------- */

@media(max-width:820px){

  .content{
    padding:20px 15px 72px !important;
  }

  .section-head{
    align-items:flex-start !important;
  }

  .section-head h1{
    font-size:24px !important;
  }

  .section-head p{
    font-size:10px !important;
  }

  .kpis{
    gap:10px !important;
  }

  .kpi{
    min-height:102px !important;
    padding:14px !important;
  }

  .kpi strong{
    font-size:22px !important;
  }

  .panel-head{
    min-height:53px !important;
    padding:13px 14px !important;
  }

  .panel-body{
    padding:14px !important;
  }

  .snapshot-row{
    grid-template-columns:90px 1fr 32px !important;
    gap:8px !important;
  }

}


/* =========================================================
   RC1.1.3.1 — TYPOGRAPHY BALANCE & READABILITY LOCK
   ========================================================= */

/* Base reading scale */
body{
  font-size:11px !important;
  line-height:1.4 !important;
  letter-spacing:0 !important;
}


/* PAGE HEADING */

.section-head h1{
  font-size:27px !important;
  line-height:1.12 !important;
  font-weight:750 !important;
}

.section-head p{
  font-size:11px !important;
  line-height:1.5 !important;
  max-width:760px;
}


/* TOP HEADER */

.top-context span{
  font-size:8.5px !important;
  line-height:1.2 !important;
}

.top-context strong{
  font-size:12px !important;
  line-height:1.3 !important;
}

.live-platform{
  font-size:9.5px !important;
  line-height:1.2 !important;
}


/* SIDEBAR */

.nav-section,
.nav-label{
  font-size:8px !important;
  line-height:1.25 !important;
}

.nav-copy strong{
  font-size:11px !important;
  line-height:1.25 !important;
  font-weight:700 !important;
}

.nav-copy small{
  font-size:8.75px !important;
  line-height:1.3 !important;
  margin-top:2px !important;
}

.profile-copy strong{
  font-size:10.5px !important;
  line-height:1.25 !important;
}

.profile-copy span{
  font-size:8.75px !important;
  line-height:1.3 !important;
}


/* KPI CARDS */

.kpi .label{
  font-size:8.5px !important;
  line-height:1.25 !important;
}

.kpi strong{
  font-size:24px !important;
  line-height:1.05 !important;
  margin:8px 0 6px !important;
}

.kpi small{
  font-size:9.25px !important;
  line-height:1.4 !important;
}


/* PANEL TITLES */

.panel-head{
  min-height:58px !important;
  padding:15px 18px !important;
}

.panel-head h3{
  font-size:13px !important;
  line-height:1.25 !important;
  font-weight:750 !important;
}

.panel-context{
  font-size:8.75px !important;
  line-height:1.35 !important;
}


/* OPERATIONAL ACTIVITY */

.snapshot-label{
  font-size:9.75px !important;
  line-height:1.3 !important;
}

.snapshot-row strong{
  font-size:10.5px !important;
  line-height:1.2 !important;
}

.snapshot-note{
  font-size:8.75px !important;
  line-height:1.5 !important;
}


/* CONVERSION FUNNEL */

.conversion-step{
  min-height:48px !important;
  padding:9px 10px !important;
}

.conversion-step > div:first-child strong{
  font-size:9.5px !important;
  line-height:1.3 !important;
}

.conversion-number strong{
  font-size:10.5px !important;
  line-height:1.2 !important;
}

.conversion-number small{
  font-size:8px !important;
  line-height:1.3 !important;
  margin-top:2px !important;
}


/* PRIORITY ACTIONS */

.priority{
  min-height:58px !important;
  padding:11px 12px !important;
}

.priority strong{
  font-size:9.75px !important;
  line-height:1.3 !important;
}

.priority span{
  font-size:8.25px !important;
  line-height:1.4 !important;
  margin-top:3px !important;
}


/* PROPERTY TABLE */

.recent-table th,
table th{
  font-size:8px !important;
  line-height:1.3 !important;
  padding:11px 10px !important;
}

.recent-table td,
table td{
  font-size:9.5px !important;
  line-height:1.45 !important;
  padding:11px 10px !important;
}

.recent-table td strong,
.entity strong{
  font-size:9.5px !important;
  line-height:1.35 !important;
}


/* BADGES */

.badge{
  font-size:8px !important;
  line-height:1 !important;
  padding:6px 10px !important;
}


/* ---------------------------------------------------------
   RC INTEGRATION STATUS — FIX OVERLAP / WRAPPING
   --------------------------------------------------------- */

.health-list{
  display:flex !important;
  flex-direction:column !important;
}

.health-row{
  display:grid !important;
  grid-template-columns:minmax(125px,1fr) auto !important;
  align-items:center !important;
  column-gap:18px !important;
  min-height:50px !important;
  padding:10px 0 !important;
  border-bottom:1px solid #edf0f2 !important;
}

.health-row:last-child{
  border-bottom:0 !important;
}

.health-row .health-icon{
  display:none !important;
}

.health-row strong{
  font-size:9.5px !important;
  line-height:1.3 !important;
  font-weight:700 !important;
  white-space:normal !important;
  overflow-wrap:normal !important;
}

.health-status{
  font-size:9px !important;
  line-height:1.25 !important;
  font-weight:750 !important;
  text-align:right !important;
  white-space:nowrap !important;
}

.health-status.pending{
  white-space:nowrap !important;
}


/* BUTTONS */

.primary,
.secondary,
.table-btn,
.control{
  font-size:9.5px !important;
  line-height:1.2 !important;
}


/* Slightly more breathing room between major dashboard rows */

.executive-grid,
.lower-dashboard{
  gap:16px !important;
}

.lower-dashboard{
  margin-top:17px !important;
}


/* MOBILE TYPOGRAPHY */

@media(max-width:820px){

  .section-head h1{
    font-size:23px !important;
  }

  .panel-head h3{
    font-size:12px !important;
  }

  .kpi strong{
    font-size:21px !important;
  }

  .health-row{
    grid-template-columns:1fr auto !important;
    column-gap:10px !important;
  }

  .health-status{
    font-size:8.5px !important;
  }
}


/* =========================================================
   RC1.1.3.2 — PREMIUM SIDEBAR ACTIVE SELECTOR
   ========================================================= */

/* Default menu rows */
.nav-item{
  position:relative !important;
  overflow:hidden !important;
  border:1px solid transparent !important;
  background:transparent !important;
  box-shadow:none !important;
  transition:
    background .18s ease,
    border-color .18s ease,
    transform .18s ease !important;
}

/* Hover — light, not bulky */
.nav-item:hover{
  background:rgba(255,255,255,.035) !important;
  border-color:rgba(255,255,255,.035) !important;
}

/* New premium active state */
.nav-item.active{
  background:
    linear-gradient(
      90deg,
      rgba(40,78,99,.72) 0%,
      rgba(27,59,78,.52) 72%,
      rgba(18,46,63,.28) 100%
    ) !important;

  border-color:rgba(119,158,177,.18) !important;
  border-radius:10px !important;
  box-shadow:none !important;
}

/* Slim gold selector rail */
.nav-item.active::before{
  content:"";
  position:absolute;
  left:0;
  top:9px;
  bottom:9px;
  width:3px;
  border-radius:0 999px 999px 0;
  background:#d9ad59;
}


/* Move contents slightly away from selector rail */
.nav-item.active{
  padding-left:17px !important;
}

/* Active icon */
.nav-item.active .nav-icon{
  background:#18384b !important;
  border-color:#55778b !important;
  color:#e2b866 !important;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.02),
    0 3px 10px rgba(0,0,0,.08) !important;
}

/* Active text */
.nav-item.active .nav-copy strong{
  color:#ffffff !important;
}

.nav-item.active .nav-copy small{
  color:#b9cbd4 !important;
}

/* Active arrow */
.nav-item.active .nav-arrow{
  color:#e1b45c !important;
  transform:translateX(1px);
}

/* Non-active arrows stay quiet */
.nav-item:not(.active) .nav-arrow{
  color:#708a98 !important;
}

/* Keyboard accessibility */
.nav-item:focus-visible{
  outline:2px solid rgba(217,173,89,.7) !important;
  outline-offset:2px !important;
}


@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:opsz,wght@6..12,400;6..12,500;6..12,600;6..12,700;6..12,800&display=swap');

:root{
  --theo-font:"Nunito Sans",-apple-system,BlinkMacSystemFont,"Segoe UI",Arial,sans-serif;
}

html,body,button,input,select,textarea,table,thead,tbody,tfoot,tr,th,td,label,option,a,span,div,p,strong,small{
  font-family:var(--theo-font) !important;
}

body,p,td,input,select,textarea{font-weight:500 !important;}
button,.nav-item,.primary,.secondary,.table-btn{font-weight:700 !important;}

table td{
  font-size:10px !important;
  line-height:1.45 !important;
  letter-spacing:0 !important;
}

table th{
  font-size:8.5px !important;
  line-height:1.25 !important;
  font-weight:800 !important;
  letter-spacing:.08em !important;
}

select,select option{
  font-family:var(--theo-font) !important;
  font-size:10px !important;
  font-weight:600 !important;
}


/* =========================================================
   RC1.1.3.3 — FINAL ADMIN SELECTOR SOURCE LOCK
   Remove legacy gold pseudo-element permanently
   ========================================================= */

html body .admin-shell aside.sidebar .nav .nav-item.active::after{
  content:none !important;
  display:none !important;
  position:static !important;

  width:0 !important;
  height:0 !important;

  background:transparent !important;
  border:0 !important;
  outline:0 !important;
  box-shadow:none !important;
}

/* Selected Admin row */
html body .admin-shell aside.sidebar .nav .nav-item.active{
  outline:none !important;
  box-shadow:none !important;

  border:1px solid rgba(111,151,170,.16) !important;

  background:
    linear-gradient(
      90deg,
      rgba(38,75,96,.70) 0%,
      rgba(26,57,76,.48) 72%,
      rgba(17,44,60,.24) 100%
    ) !important;
}

/* Only one gold selector indicator */
html body .admin-shell aside.sidebar .nav .nav-item.active::before{
  content:"" !important;
  display:block !important;

  position:absolute !important;
  left:0 !important;
  top:9px !important;
  bottom:9px !important;

  width:3px !important;
  height:auto !important;

  background:#d7aa59 !important;
  border:0 !important;
  border-radius:0 999px 999px 0 !important;
  box-shadow:none !important;
}

/* No focus decoration around the active row */
html body .admin-shell aside.sidebar .nav .nav-item.active:focus,
html body .admin-shell aside.sidebar .nav .nav-item.active:active{
  outline:none !important;
  box-shadow:none !important;
}

