/* Admin sidebar: fixed width so production matches local (loaded separately so it never depends on Tailwind build) */
.admin-sidebar {
  width: 16rem !important;
  min-width: 16rem !important;
  max-width: 16rem !important;
  flex: 0 0 16rem !important;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  align-self: stretch;
  background-color: #000;
  color: #d1d5db;
  border-right: none !important;
}
/* Logo block: no vertical line to the right */
.admin-sidebar > div:first-of-type {
  border-right: none !important;
  border-left: none !important;
  box-shadow: none !important;
}

.admin-sidebar > nav {
  flex: 1 1 0%;
  overflow-y: auto;
  overflow-x: visible;
  min-width: 0;
}
