/* Custom application styles */

/* Validation error highlight animation */
.validation-highlight {
  animation: highlight-flash 2s ease-in-out;
}

@keyframes highlight-flash {
  0%, 100% {
    background-color: transparent;
  }
  10%, 50% {
    background-color: rgba(250, 204, 21, 0.2);
  }
}
