/* Upload animation styles */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.upload-status {
  animation: pulse 1.5s ease-in-out infinite;
  color: #1978c6 !important;
  font-weight: 600;
}
