@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes buttonPress {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.98);
  }
  100% {
    transform: scale(1);
  }
}

.suggestions-container.show {
  display: block;
  animation: fadeIn 0.2s ease-out;
}

.primary-button:active,
.secondary-button:active {
  animation: buttonPress 0.2s ease-out;
}

.form-container,
.output-container {
  opacity: 0;
  animation: fadeIn 0.5s ease-out forwards;
}

.output-container {
  animation-delay: 0.2s;
}