/* Demo auto-fill button - Only shown in non-production environments */

.demo-autofill-btn {
  margin-top: 8px;
  font-size: 0.85rem;
  opacity: 0.75;
}

.demo-autofill-btn:hover {
  opacity: 1;
}

/* Toast notification animations */
@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOut {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}

.demo-toast {
  position: fixed;
  top: 20px;
  right: 20px;
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  font-weight: 500;
  animation: slideIn 0.3s ease;
}
