/* Sidebar card styling */
.sidebar__nav.sidebar__nav--border > li > a {
  background: #222222 !important;
  border: 0 !important;
  padding-left: 20px;          /* adjust if you need less/more indent */
  border-radius: 8px;
  color: inherit;
  transition: background 0.2s ease, color 0.2s ease;
}

/* Active/hovered state */
.sidebar__nav.sidebar__nav--border > li.active > a,
.sidebar__nav.sidebar__nav--border > li > a:hover,
.sidebar__nav.sidebar__nav--border > li > a:focus-visible {
  background: #6b6b6b !important;
  border: 0 !important;
}

/* Slimmer sidebar cards */
.sidebar__nav.sidebar__nav--border > li > a {
  padding: 6px 16px !important;     /* top/bottom, left/right */
  height: auto !important;          /* let content define height */
  line-height: 1.3;
  margin-bottom: 6px;               /* tighten gap between cards */
}

.sidebar__nav.sidebar__nav--border > li:last-child > a {
  margin-bottom: 0;                  /* remove trailing gap */
}

