
#po-verification-modal {
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 99999;
}

#po-verification-modal .modal-content {
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.15), 0 0 60px rgba(0, 255, 255, 0.1);
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
