.dash-sidebar {
  width: 240px;
  background: #f8f9fa;
  border-right: 1px solid #e6e6e6;
  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: #6c757d;
  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: #212529;
}

.dash-sidebar-link:hover {
  background: #ececec;
  color: #212529;
}

.dash-sidebar-link.is-active {
  font-weight: 700;
}

@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 #e6e6e6;
  }

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