/* sidebar-rebuild.css | ArteLix Sidebar Simplificada */
/* Sidebar nova */
.ax-snav{display:flex;flex-direction:column;gap:1px;padding:8px;}
.ax-slink{
  display:flex;align-items:center;gap:9px;padding:7px 10px;
  border-radius:8px;text-decoration:none;color:var(--ax-sub,#6b7280);
  font-size:.8rem;font-weight:500;transition:all .15s;
  cursor:pointer;border:none;background:none;
}
.ax-slink:hover{background:rgba(124,58,237,.08)!important;color:#7c3aed!important;}
.ax-sact{background:rgba(124,58,237,.1)!important;color:#7c3aed!important;font-weight:600!important;}
.ax-s-ico{width:18px;height:18px;flex-shrink:0;display:flex;align-items:center;justify-content:center;}
.ax-s-ico svg{width:17px;height:17px;}
.ax-s-txt{flex:1;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}
.ax-slbl{font-size:.58rem;font-weight:700;text-transform:uppercase;letter-spacing:.09em;color:var(--ax-muted,#9ca3af);padding:10px 10px 4px;margin-top:2px;}
.ax-shr{height:1px;background:var(--ax-border,#e5e7eb);margin:6px 8px;}
/* Garantir que sidebar nativa preserve logo/user */
.sidebar [id="ax-sidebar-nav"]~*,.sidebar-nav [id="ax-sidebar-nav"]~*{display:none!important;}
/* Compactar sidebar */
.sidebar,.sidebar-nav,[class*="sidebar"]{width:220px!important;min-width:220px!important;}
@media(max-width:768px){
  .sidebar,.sidebar-nav,[class*="sidebar"]{
    position:fixed!important;left:-220px!important;z-index:9700!important;
    transition:left .22s cubic-bezier(.4,0,.2,1)!important;
  }
  .sidebar.ax-open,.sidebar-nav.ax-open{left:0!important;}
}
