/* Custom styles for MTrade Mini App */
body {
  background-color: #1a1a2e;
  -webkit-tap-highlight-color: transparent;
}

.step-view {
  transform: translateX(0);
  opacity: 1;
}

input, textarea, select {
  outline: none;
}

/* Scrollbar Styles */
::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
::-webkit-scrollbar-track {
  background: #1a1a2e;
}
::-webkit-scrollbar-thumb {
  background: #0f3460;
  border-radius: 10px;
}

/* Animations */
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 5px rgba(0, 168, 255, 0.4); }
  50% { box-shadow: 0 0 15px rgba(0, 168, 255, 0.8); }
}

.active-glow {
  animation: pulseGlow 2s infinite;
}

.custom-card {
  background-color: #16213e;
  border: 1px solid rgba(15, 52, 96, 0.5);
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}