* {
  box-sizing: border-box;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/InterMedium.woff2");
  font-display: swap;
  font-weight: 500;
}

body {
  margin: 0;
  padding: 20px;
  font-family: "Inter", sans-serif;
}

.nav {
  border: 1px solid #243041;
  border-radius: 24px;
  padding: 16px;
  width: 100%;
  max-width: 280px;
  background: #111827;
}

.nav__list {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 12px;
}

.nav__link {
  display: flex;
  align-items: center;
  border-radius: 16px;
  padding: 16px;
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
  color: #94a3b8;
  transition: color 0.3s, background 0.3s;
  gap: 12px;
}

.nav__link svg {
  display: block;
  width: 20px;
  height: 20px;
  stroke: currentColor;
}

.nav__link:hover {
  color: #f8fafc;
  background: rgba(59, 130, 246, 0.15);
}

.nav__link--active {
  color: #f8fafc;
  background: rgba(59, 130, 246, 0.15);
  pointer-events: none;
}
