.pill-link {
  background: #eef6ff;
  color: #005eb8;
  padding: 2px 8px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s;
  margin: 1rem 1rem;
  background-color: #7BA1BC;
}
.pill-link:hover {
  background: #d8edff;
}

.data-profile-header{
	margin-bottom: .3rem;
}

.data-profile-footer{
	margin-top: .3rem;
}

.data-profile{
	text-decoration: none !important;
}

.data-profile:hover{
	color:#fff !important;
}

.animated-link {
  color: #005eb8;
  text-decoration: none;
  position: relative;
  font-weight: 600;
}

.animated-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: #005eb8;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease-out;
}

.animated-link:hover::after {
  transform: scaleX(1);
}

.soft-btn {
  display: inline-block;
  padding: 4px 10px;
  border: 1px solid #005eb8;
  border-radius: 4px;
  background-color:#7DA6C4;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s;
}

.soft-btn:hover {
  background-color: #7DA6C4;
  color: white !important;
}

.profile-link:hover a.data-profile {
  color: white;
}