.dash-sidebar {
  width: 240px;
  background: rgba(24, 29, 36, 0.96);
  border-right: 1px solid var(--surface-border);
  padding: 24px 16px;
  min-height: calc(100vh - 80px);
  position: sticky;
  top: 80px;
  align-self: flex-start;
}

.dash-sidebar-title {
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.dash-sidebar-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dash-sidebar-link {
  display: block;
  padding: 6px 8px;
  border-radius: 6px;
  text-decoration: none;
  color: var(--text-primary);
}

.dash-sidebar-link:hover {
  background: rgba(var(--accent-rgb), 0.14);
  color: var(--text-primary);
}

.dash-sidebar-link.is-active {
  font-weight: 700;
  background: rgba(var(--accent-rgb), 0.22);
  color: var(--accent-contrast);
}

@media (max-width: 991px) {
  .layout-wrapper {
    flex-direction: column;
  }

  .dash-sidebar {
    width: 100%;
    position: static;
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--surface-border);
  }

  .dash-sidebar-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px 12px;
  }
}
