.profile-icons {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}

.profile-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #f1f3ff;
  text-decoration: none !important;
  border-bottom: none !important;
  box-shadow: none;
  transition:
    background-color 0.18s ease,
    transform 0.18s ease;
}

.profile-icon img {
  width: 18px;
  height: 18px;
  display: block;
  border: 0;
  filter: brightness(0) saturate(100%) invert(34%) sepia(67%) saturate(1696%)
    hue-rotate(218deg) brightness(92%) contrast(91%);
  transition: filter 0.18s ease;
}

.profile-icon:hover {
  background: #435ed8;
  transform: translateY(-1px);
}

.profile-icon:hover img {
  filter: brightness(0) invert(1);
}

.profile-icon:focus {
  outline: 2px solid #5d75e8;
  outline-offset: 4px;
}
