.nav-link {
  min-height: 40px;
  padding: 0 11px;
  border-radius: 20px;
  background: transparent;
  color: var(--text);
  text-decoration: none;
  font-size: 0.8125rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease, color 0.15s ease;
}

.nav-link:hover {
  background: var(--surface-soft);
}

.nav-apps,
.nav-profile {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
}

.nav-apps {
  color: var(--text-muted);
  transition: background 0.15s ease, color 0.15s ease;
}

.nav-apps:hover {
  background: var(--surface-soft);
  color: var(--text);
}

.nav-profile {
  overflow: hidden;
  background: var(--surface-soft);
}

.nav-profile-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
