aside nav {
  gap: 6px;
  padding-right: 4px;
}

.nav-group[hidden] {
  display: none !important;
}

.nav-group {
  display: grid;
  gap: 4px;
}

.nav-group-toggle {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 11px;
  color: #d0d5dd;
  font-weight: 700;
  cursor: pointer;
}

.nav-group-toggle:hover,
.nav-group.open > .nav-group-toggle {
  background: #1d2939;
  color: #fff;
}

.nav-group-label {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
}

.nav-group-icon {
  display: grid;
  flex: none;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid #344054;
  border-radius: 9px;
  background: #1d2939;
  color: #84adff;
  font-size: 12px;
}

.nav-group.open .nav-group-icon {
  border-color: #475467;
  background: #253d67;
  color: #dbeafe;
}

.nav-chevron {
  width: 9px;
  height: 6px;
  margin-right: 3px;
  background: currentColor;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  font-size: 0;
  transition: transform .18s ease;
}

.nav-group.open .nav-chevron {
  transform: rotate(180deg);
}

.nav-group-items {
  display: none;
  gap: 3px;
  padding: 0 0 4px 12px;
}

.nav-group.open .nav-group-items {
  display: grid;
}

.nav-group-items .nav-item {
  position: relative;
  width: 100%;
  padding: 9px 12px 9px 42px;
  border-radius: 9px;
  color: #98a2b3;
  font-size: 13px;
  font-weight: 500;
}

.nav-group-items .nav-item::after {
  content: "";
  position: absolute;
  left: 25px;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #475467;
  transform: translateY(-50%);
}

.nav-group-items .nav-item:hover {
  background: #1d2939;
  color: #fff;
}

.nav-group-items .nav-item.active {
  background: #21447a;
  color: #fff;
  box-shadow: inset 3px 0 #84adff;
}

.nav-group-items .nav-item.active::after {
  background: #84adff;
  box-shadow: 0 0 0 4px #84adff22;
}

.page-heading {
  min-width: 0;
}

.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 7px;
  color: #667085;
  font-size: 12px;
}

.page-breadcrumb span {
  color: #98a2b3;
}

.page-heading h2 {
  margin-bottom: 4px;
}

@media (max-width: 900px) {
  .nav-group-toggle {
    justify-content: center;
    padding: 9px 4px;
  }

  .nav-group-text,
  .nav-chevron {
    display: none;
  }

  .nav-group-items {
    padding-left: 0;
  }

  .nav-group-items .nav-item {
    padding: 9px 4px;
    text-align: center;
    font-size: 0;
  }

  .nav-group-items .nav-item::before {
    content: attr(data-short);
    font-size: 12px;
  }

  .nav-group-items .nav-item::after {
    display: none;
  }

  .page-breadcrumb {
    font-size: 11px;
  }
}
