/* Admin sidebar: fixed viewport column beside main; layouts/application uses a w-64 spacer since fixed skips flex flow. */
.admin-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 30;
  width: 16rem !important;
  min-width: 16rem !important;
  max-width: 16rem !important;
  flex: 0 0 16rem !important;
  height: 100vh;
  height: 100dvh;
  max-height: 100dvh;
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
  box-sizing: border-box;
  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%;
  min-height: 0;
  overflow-y: auto;
  overflow-x: visible;
  min-width: 0;
}
