/* Sidebar admin — partagée dashboard + portfolio */
.adm-sb{
  width:260px;flex-shrink:0;background:#042C53;
  display:flex;flex-direction:column;
  position:fixed;top:0;bottom:0;left:0;z-index:900;
  transition:transform .3s ease;
  border-right:1px solid rgba(255,255,255,.06);
}
.adm-sb-brand{
  padding:20px 22px;border-bottom:1px solid rgba(255,255,255,.08);
  font-family:'Sora',sans-serif;font-size:17px;font-weight:700;color:#fff;
  display:flex;align-items:center;gap:10px;
}
.adm-sb-brand-ico{
  width:34px;height:34px;border-radius:8px;background:#378ADD;
  display:flex;align-items:center;justify-content:center;flex-shrink:0;
}
.adm-sb-brand-ico svg{width:18px;height:18px;fill:#fff}
.adm-sb-nav{flex:1;padding:14px 10px;overflow-y:auto}
.adm-sb-group{
  font-size:10px;text-transform:uppercase;letter-spacing:.1em;
  color:rgba(255,255,255,.32);padding:14px 14px 6px;font-weight:700;
}
.adm-sb-item{
  display:flex;align-items:center;gap:11px;padding:10px 14px;
  border-radius:8px;color:rgba(255,255,255,.62);font-size:13.5px;font-weight:500;
  cursor:pointer;transition:all .18s;margin-bottom:2px;text-decoration:none;
  border:none;background:none;width:100%;font-family:'DM Sans',sans-serif;text-align:left;
}
.adm-sb-item:hover{background:rgba(255,255,255,.08);color:#fff}
.adm-sb-item.act{background:#185FA5;color:#fff}
.adm-sb-item svg{width:17px;height:17px;stroke:currentColor;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;flex-shrink:0}
.adm-sb-badge{margin-left:auto;background:#e24b4a;color:#fff;font-size:10px;font-weight:700;padding:2px 7px;border-radius:10px}
.adm-sb-foot{padding:14px 10px;border-top:1px solid rgba(255,255,255,.08)}
.adm-sb-out{
  display:flex;align-items:center;gap:11px;padding:10px 14px;border-radius:8px;
  color:rgba(255,255,255,.42);font-size:13.5px;cursor:pointer;
  background:none;border:none;width:100%;font-family:'DM Sans',sans-serif;text-align:left;
  transition:all .18s;
}
.adm-sb-out:hover{background:rgba(255,0,0,.1);color:#f09595}
.adm-sb-out svg{width:17px;height:17px;stroke:currentColor;fill:none;stroke-width:2}
.adm-sb-toggle{
  display:none;align-items:center;justify-content:center;
  width:38px;height:38px;border-radius:8px;border:1px solid #E4E7EF;
  background:#fff;cursor:pointer;margin-right:12px;
}
.adm-sb-toggle svg{width:18px;height:18px;stroke:#475569;fill:none;stroke-width:2}
.adm-sb-overlay{display:none;position:fixed;inset:0;background:rgba(0,0,0,.4);z-index:899}
body.has-adm-sb .adm-sb-overlay.act{display:block}
body.has-adm-sb{padding-left:260px}
body.has-adm-sb nav{left:260px;width:calc(100% - 260px)}
@media(max-width:900px){
  .adm-sb{transform:translateX(-100%)}
  .adm-sb.open{transform:translateX(0)}
  .adm-sb-toggle{display:flex}
  body.has-adm-sb{padding-left:0}
  body.has-adm-sb nav{left:0;width:100%}
  .am{margin-left:0!important}
}
