/* Admin panel layout - built on top of style.css tokens */
body.admin-body{background:var(--cream);}
.admin-wrap{display:flex;min-height:100vh;}
.admin-sidebar{
  width:250px;flex:none;background:var(--forest-dark);color:rgba(255,255,255,.85);
  padding:26px 18px;position:sticky;top:0;height:100vh;overflow-y:auto;
}
.admin-sidebar .brand{color:var(--white);font-size:1.15rem;margin-bottom:34px;padding:0 8px;}
.admin-sidebar nav a{
  display:flex;align-items:center;gap:12px;padding:12px 14px;border-radius:var(--radius-sm);
  font-size:.9rem;margin-bottom:4px;color:rgba(255,255,255,.72);
}
.admin-sidebar nav a:hover{background:rgba(255,255,255,.06);color:var(--white);}
.admin-sidebar nav a.active{background:var(--gold);color:var(--forest-dark);font-weight:600;}
.admin-sidebar .section-label{font-size:.68rem;text-transform:uppercase;letter-spacing:.1em;color:rgba(255,255,255,.4);margin:22px 0 8px;padding:0 14px;}
.admin-main{flex:1;padding:30px 36px;max-width:calc(100% - 250px);}
@media(max-width:900px){
  .admin-wrap{flex-direction:column;}
  .admin-sidebar{width:100%;height:auto;position:relative;}
  .admin-main{max-width:100%;padding:20px;}
}
.admin-topbar{display:flex;justify-content:space-between;align-items:center;margin-bottom:28px;flex-wrap:wrap;gap:14px;}
.admin-topbar h1{font-size:1.6rem;margin:0;}
.stat-cards{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;margin-bottom:32px;}
@media(max-width:900px){.stat-cards{grid-template-columns:repeat(2,1fr);}}
@media(max-width:560px){.stat-cards{grid-template-columns:1fr;}}
.stat-card{background:var(--white);border-radius:var(--radius-md);padding:22px;box-shadow:var(--shadow-sm);}
.stat-card .num{font-family:'Playfair Display',serif;font-size:2rem;color:var(--forest);}
.stat-card .lbl{font-size:.8rem;color:var(--muted);text-transform:uppercase;letter-spacing:.05em;}
.stat-card .icon{width:44px;height:44px;border-radius:50%;background:var(--forest-tint);color:var(--forest);display:flex;align-items:center;justify-content:center;margin-bottom:14px;}
.login-wrap{min-height:100vh;display:flex;align-items:center;justify-content:center;background:var(--forest-dark);padding:20px;}
.login-box{background:var(--white);border-radius:var(--radius-lg);padding:44px;max-width:400px;width:100%;box-shadow:var(--shadow-lg);}
.login-box .brand{justify-content:center;margin-bottom:6px;}
.table-actions{display:flex;gap:8px;flex-wrap:wrap;}
.avatar-thumb{width:44px;height:44px;border-radius:8px;object-fit:cover;}
.filter-bar{display:flex;gap:12px;margin-bottom:20px;flex-wrap:wrap;align-items:center;}
