.admin-layout {
  display: flex;
  min-height: 100vh;
  background-color: var(--bg-color);
}

.admin-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0; /* Important for flex-child to not overflow */
}

.admin-content {
  flex: 1;
  padding: 24px;
  overflow-y: auto;
}

.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 90;
  display: none;
}

@media (max-width: 992px) {
  .sidebar-overlay {
    display: block;
  }
}
