/* Trading Tab Switcher */
.kp-trading-tabs {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin: 2rem 0 1rem 0;
}
.trading-tab {
  background: #222;
  color: #ffe066;
  border: none;
  border-radius: 2rem 2rem 0 0;
  padding: 0.7rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  outline: none;
}
.trading-tab.active, .trading-tab:focus {
  background: #ffe066;
  color: #222;
  box-shadow: 0 2px 12px #ffe06644;
}
.kp-trading-view {
  max-width: 900px;
  margin: 0 auto 2rem auto;
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 2px 16px #0001;
  padding: 1.5rem;
}
/* ==========================================
   KUYAPADS NETWORK - TRADING SECTION STYLES
   ==========================================
   This file contains all trading-specific styles
   with proper namespacing to prevent conflicts.
   ========================================== */

body.kp-trading { background: var(--kp-color-bg-primary); }

/* Add trading-specific styles below */
