/* ── SIDEBAR ─────────────────────────────────────────────── */
.sidebar {
  background: var(--nav2);
  border-right: 1px solid var(--nav-line);
  display: flex; flex-direction: column;
  overflow: hidden;
}

.sb-body {
  flex: 1; overflow-y: auto; padding: 16px 0 8px;
  scrollbar-width: thin; scrollbar-color: rgba(255,255,255,.06) transparent;
}
.sb-body::-webkit-scrollbar { width: 3px; }
.sb-body::-webkit-scrollbar-thumb { background: rgba(255,255,255,.08); border-radius: 3px; }

.sb-section {
  display: flex; align-items: center; gap: 8px;
  padding: 0 16px 12px;
}
.sb-section-txt {
  font-size: 8px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: rgba(255,255,255,.18); white-space: nowrap;
}
.sb-section-line { flex: 1; height: 1px; background: var(--nav-line); }

/* Category groups */
.cat-grp { margin-bottom: 2px; }
.cat-lbl {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 16px 4px;
  font-size: 8.5px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(255,255,255,.22);
}
.cat-lbl-ico { display: flex; align-items: center; justify-content: center; }
.cat-lbl-ico svg { width: 10px; height: 10px; }

/* Nav items */
.sb-item {
  position: relative;
  display: flex; align-items: center; gap: 9px;
  padding: 8px 16px;
  font-size: 12px; font-weight: 400; line-height: 1.4;
  color: rgba(255,255,255,.42);
  cursor: pointer;
  transition: background var(--duration-fast), color var(--duration-fast);
  border-left: 2px solid transparent;
  letter-spacing: -.01em;
  animation: sb-item-in var(--duration-base) var(--ease-out) both;
}
.sb-item:hover {
  background: var(--nav-hover);
  color: rgba(255,255,255,.72);
}
.sb-item.active {
  background: var(--nav-active);
  color: rgba(255,255,255,.95);
  font-weight: 500;
  border-left-color: var(--blue);
}
.sb-item-ico {
  width: 16px; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
  opacity: .7;
}
.sb-item.active .sb-item-ico { opacity: 1; }
.sb-item-ico svg { width: 13px; height: 13px; }
.sb-item-badge {
  margin-left: auto;
  font-size: 7.5px; font-weight: 700; letter-spacing: .4px;
  background: rgba(23,105,200,.7); color: #fff;
  padding: 1px 5px; border-radius: var(--r-sm);
  text-transform: uppercase;
}

/* Footer */
.sb-footer { border-top: 1px solid var(--nav-line); padding: 12px; }
.btn-new {
  display: flex; align-items: center; gap: 9px;
  width: 100%; padding: 9px 12px;
  background: transparent;
  border: 1px dashed rgba(255,255,255,.1);
  border-radius: var(--r);
  font-family: 'Poppins', sans-serif;
  font-size: 11.5px; font-weight: 500;
  color: rgba(255,255,255,.3);
  cursor: pointer;
  transition: all var(--duration-base);
}
.btn-new:hover {
  background: rgba(23,105,200,.1);
  border-color: rgba(23,105,200,.35);
  color: rgba(255,255,255,.6);
}
.btn-new-ic {
  width: 17px; height: 17px;
  background: rgba(255,255,255,.06);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 300; flex-shrink: 0;
}
