#axnv-migrate {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  font-family: Arial, sans-serif;
  color:#fff;
}

.card {
  background: rgba(10, 20, 50, 0.9);
  border: 1px solid rgba(66,159,255,0.3);
  padding: 25px;
  border-radius: 16px;
  width: 380px;
  text-align: center;
  backdrop-filter: blur(12px);
  box-shadow: 0 0 25px rgba(66,159,255,0.2);
}

.heading {
  color: #7fdcff !important;
  font-size:30px;
}

button {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border-radius: 12px;
  border: 1px solid rgba(120,180,255,0.4);
  background: rgba(40,80,150,0.25);
  color: #cfeaff;
  font-size: 15px;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

button:hover {
  background: rgba(80,140,255,0.35);
  box-shadow: 0 0 15px rgba(80,140,255,0.5);
  transform: translateY(-1px);
}

button:active {
  transform: scale(0.98);
}

button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.input-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

.input-box input {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: none;
  background: rgba(255,255,255,0.1);
  color: white;
}

#toast {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: rgba(20,30,60,0.95);
  color: white;
  padding: 12px 18px;
  border-radius: 10px;
  border: 1px solid rgba(66,159,255,0.4);
  opacity: 0;
  transition: 0.3s;
  z-index:100;
}

.loader {
  border: 3px solid rgba(255,255,255,0.2);
  border-top: 3px solid #4da3ff;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  animation: spin 1s linear infinite;
  display: inline-block;
  margin-left: 6px;
}

.max-btn {
  width: 100%;
  padding: 10px;
  font-size: 14px;
  background: rgba(80,140,255,0.2);
}

.max-btn:hover {
  background: rgba(80,140,255,0.35);
}

.token-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(120,180,255,0.2);
  padding: 10px;
  border-radius: 10px;
  margin-top: 10px;
}

.token-info {
  display: flex;
  flex-direction: column;
  font-size: 12px;
  color: #cfeaff;
}

.copy-btn {
  width: auto;
  padding: 6px 10px;
  font-size: 12px;
  background: rgba(80,140,255,0.2);
}

.copy-btn:hover {
  background: rgba(80,140,255,0.4);
}

.token-hint {
  font-size: 12px;
  opacity: 0.6;
  margin-top: 6px;
}

.token-hint1 {
  font-size: 12px;
  opacity: 0.6;
  margin-top: 6px;
}

@keyframes spin {
  100% { transform: rotate(360deg); }
}