/*@import "tailwindcss";*/

:root {
  --primary: #111827;
}

.button {
  padding: 8px 16px;
  border-radius: 8px;
  border: 1px solid #cccccc;
  background-color: transparent;

  cursor: pointer;
}

.button.primary {
  background-color: var(--primary);
  color: white;
}

.ping-small {
  display: inline-block;
  animation: pingScale 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes pingScale {
  75%, 100% {
    transform: scale(1.1);
    opacity: 0;
  }
}
