.oragle-module-price-tag {
  background-color: #eee;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.75rem;

  animation: flash 1s forwards;
}

.oragle-project-save-button {
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: bold;
  border: 1px solid #333;
  border-radius: 6px;

  animation: flash 1s forwards;
}

@keyframes flash {
  0% {background-color: #eee;}
  50% {background-color: #c1c1c1;}
  100% {background-color: #eee;}
}
