.topbar{
  height:58px;
  background:#fff;
  border-bottom:1px solid var(--border);
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 14px;
  position:sticky;
  top:0;
  z-index:30;
}

.topTitle .t1{font-weight:950;font-size:16px}
.topTitle .t2{font-weight:900;font-size:12px;color:var(--muted)}

.iconBtn{
  width:44px;height:44px;
  border-radius:14px;
  border:1px solid var(--border);
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}
.iconBtn.danger{color:#dc2626}

.shell{
  display:grid;
  grid-template-columns:300px 1fr;
  min-height:calc(100dvh - 58px);
}

.sidebar{
  background:#fff;
  border-right:1px solid var(--border);
  padding:14px;
  position:sticky;
  top:58px;
  height:calc(100dvh - 58px);
  overflow:auto;
}

.sideHead{
  padding:12px;
  border:1px solid var(--border);
  border-radius:18px;
  background:#fff;
  box-shadow:var(--shadow);
}
.sideName{font-weight:950}
.sideEmail{font-weight:800;font-size:12px;color:var(--muted);margin-top:4px}

.nav{display:flex;flex-direction:column;gap:10px;margin-top:14px}
.navItem{
  border:1px solid var(--border);
  border-radius:16px;
  padding:12px 12px;
  display:flex;
  gap:10px;
  align-items:center;
  font-weight:900;
  background:#fff;
}
.navItem.active{
  border-color:rgba(10,10,194,.4);
  box-shadow:0 0 0 4px rgba(10,10,194,.08);
}

.main{padding:14px}

.card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:22px;
  box-shadow:var(--shadow);
  padding:14px;
}

/* ✅ blue box corners NOT rounded (as you said) */
.hero{
  border-radius:14px;
  background:linear-gradient(135deg, rgba(10,10,194,.10), rgba(10,10,194,.04));
}

.heroTop{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:10px;
}

.heroTitle{font-weight:950;font-size:18px}
.heroSub{font-weight:800;font-size:12px;color:var(--muted);margin-top:4px}

.pill{
  display:flex;
  align-items:center;
  gap:8px;
  padding:9px 12px;
  border-radius:999px;
  background:#fff;
  border:1px solid var(--border);
  font-weight:900;
}

.heroActions{
  display:flex;
  gap:10px;
  margin-top:12px;
  flex-wrap:wrap;
}

.btnPrimary{
  height:52px;
  padding:0 16px;
  border-radius:18px;
  border:none;
  background:var(--brand);
  color:#fff;
  font-weight:950;
  display:flex;
  align-items:center;
  gap:10px;
  cursor:pointer;
  box-shadow:0 12px 24px rgba(10,10,194,.20);
}

.btnGhost{
  height:52px;
  padding:0 16px;
  border-radius:18px;
  border:1px solid var(--border);
  background:#fff;
  color:var(--text);
  font-weight:950;
  display:flex;
  align-items:center;
  gap:10px;
  cursor:pointer;
}

.grid{
  margin-top:14px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}
@media (max-width:900px){
  .shell{grid-template-columns:1fr}
  .sidebar{
    position:fixed;
    top:58px;
    left:-340px;
    width:320px;
    height:calc(100dvh - 58px);
    transition:.25s;
    z-index:50;
    box-shadow:var(--shadow);
  }
  .sidebar.open{left:0}
  .grid{grid-template-columns:1fr}
}

.statCard{
  background:#fff;
  border:1px solid var(--border);
  border-radius:18px;
  padding:14px;
  box-shadow:var(--shadow);
}
.statCard.full{grid-column:1/-1}

.statTop{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:900;
  color:var(--muted);
}
.statNum{
  font-weight:950;
  font-size:26px;
  margin-top:8px;
}
