@keyframes prospector-shimmer {
  0% {
    background-position: -400px 0;
  }
  100% {
    background-position: 400px 0;
  }
}

.prospector-shimmer {
  background: linear-gradient(90deg, #f4f4f5 0%, #e4e4e7 50%, #f4f4f5 100%);
  background-size: 800px 100%;
  animation: prospector-shimmer 1.4s infinite linear;
  color: transparent;
  border-radius: 4px;
  display: inline-block;
  min-width: 60px;
  height: 14px;
}

@keyframes prospector-fade-in {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.prospector-fade-in {
  animation: prospector-fade-in 0.25s ease-out;
}
