html,
body.nav-page {
  height: 100%;
}

html,
body {
  scrollbar-width: thin;
  scrollbar-color: #fff #000;
}

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: #000;
}

::-webkit-scrollbar-thumb {
  background-color: #fff;
  border-radius: 8px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #e6e6e6;
}

.nav-page {
  margin: 0;
  font-family: Arial, sans-serif;
  padding: 22px 18px 20px;
  background: #000;
  color: #fff;
  overflow: auto;
  scrollbar-width: thin;
  scrollbar-color: #fff #000;
}

.nav-page::-webkit-scrollbar {
  width: 6px;
}

.nav-page::-webkit-scrollbar-track {
  background: #000;
}

.nav-page::-webkit-scrollbar-thumb {
  background-color: #fff;
  border-radius: 8px;
}

.nav-page::-webkit-scrollbar-thumb:hover {
  background-color: #e6e6e6;
}

.nav-page h1 {
  margin-top: 0;
  margin-bottom: 14px;
  font-size: 22px;
  color: #fff;
  letter-spacing: 0.5px;
}

.nav-card {
  padding: 0;
}

.nav-page ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-page li + li {
  margin-top: 12px;
}

.nav-page a {
  display: block;
  color: #fff;
  text-decoration: underline;
  font-size: 16px;
  font-weight: 600;
  padding: 10px 12px;
  border-radius: 8px;
  transition: background-color 0.2s ease, color 0.2s ease, text-decoration-color 0.2s ease;
}

.nav-page a:hover,
.nav-page a:focus {
  text-decoration: none;
  color: #e5e7eb;
  background: rgba(255, 255, 255, 0.08);
}

.nav-page a.simple-link {
  padding: 6px 0;
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

