body {
  font-family: "Inter", system-ui, sans-serif;
  background-color: #f9fafb;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-thumb {
  background-color: #d1d5db;
  border-radius: 9999px;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.9rem;
  border-radius: 0.75rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #4b5563;
  transition: background-color 0.15s;
}
.nav-link:hover {
  background-color: #f3f4f6;
}
.nav-link.active {
  background-color: #7c3aed;
  color: white;
}
