/* dashboardSidebar.css */
/* 🔒 ENFORCED DASHBOARD SIDEBAR STYLING — FINAL FIX */

#dashboardSidebar {
  overflow-x: scroll !important;
  overflow-y: hidden !important;

  scrollbar-width: thin !important;
  scrollbar-color: rgba(176,138,72,0.9) transparent !important;

  padding-bottom: 12px !important;
  margin-bottom: 25px !important;
}

#dashboardSidebar::-webkit-scrollbar {
  -webkit-appearance: none !important;
  width: 10px !important;
  height: 10px !important;
}

#dashboardSidebar::-webkit-scrollbar-thumb {
  background-color: rgba(176,138,72,0.9) !important;
  border-radius: 5px !important;
}

#dashboardSidebar img {
  display: block;
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: var(--radius-8);
  margin: 0 auto 6px !important;
  border: 1px solid var(--color-border-strong);
}

#dashboardSidebar span {
  display: block;
  text-align: center;
  font-weight: 400;
  color: var(--color-muted);
  font-size: 12px;
}
