/* [project]/src/app/trading-lab/trading-lab.css [app-client] (css) */
.trading-lab-container {
  color: #fff;
  background: radial-gradient(circle at 50% 0, #0c1425 0%, #05070a 100%);
  min-height: 100vh;
  padding: 3rem 2rem;
  font-family: Inter, sans-serif;
  overflow-x: hidden;
}

.custom-scrollbar::-webkit-scrollbar {
  height: 6px;
}

.custom-scrollbar::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, .02);
  border-radius: 10px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, .05);
  border-radius: 10px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background: rgba(59, 130, 246, .5);
}

.kanban-board {
  gap: 2rem;
  min-height: 50vh;
  margin-bottom: 4rem;
  padding: 1rem .5rem 3rem;
  display: flex;
  overflow-x: auto;
  -webkit-mask-image: linear-gradient(to right, #000 85%, rgba(0, 0, 0, 0) 100%);
  mask-image: linear-gradient(to right, #000 85%, rgba(0, 0, 0, 0) 100%);
}

.kanban-column {
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, .016);
  border: 1px solid rgba(255, 255, 255, .05);
  border-radius: 2.5rem;
  flex-direction: column;
  flex: 0 0 380px;
  padding: 1.75rem;
  transition: all .5s cubic-bezier(.23, 1, .32, 1);
  display: flex;
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, .5);
}

.kanban-column:hover {
  background: rgba(255, 255, 255, .024);
  border-color: rgba(59, 130, 246, .2);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px -20px rgba(59, 130, 246, .1);
}

.column-header {
  border-bottom: 1px solid rgba(255, 255, 255, .03);
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  display: flex;
}

.column-header h2 {
  letter-spacing: .15em;
  text-transform: uppercase;
  font-size: .9rem;
  font-weight: 900;
}

.column-count {
  color: rgba(255, 255, 255, .4);
  background: rgba(255, 255, 255, .05);
  border-radius: 1rem;
  padding: .25rem .75rem;
  font-size: .75rem;
  font-weight: 800;
}

.bot-card {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  cursor: pointer;
  background: rgba(255, 255, 255, .02);
  border: 1px solid rgba(255, 255, 255, .05);
  border-radius: 2rem;
  margin-bottom: 1.25rem;
  padding: 1.5rem;
  transition: all .4s cubic-bezier(.23, 1, .32, 1);
  position: relative;
  overflow: hidden;
}

.bot-card:hover {
  background: rgba(255, 255, 255, .04);
  border-color: rgba(255, 255, 255, .1);
  transform: scale(1.02);
}

.bot-card.active:before {
  content: "";
  background: linear-gradient(to right, #22c55e, rgba(0, 0, 0, 0));
  width: 100%;
  height: 2px;
  position: absolute;
  top: 0;
  left: 0;
}

.bot-card-header {
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.bot-name {
  letter-spacing: -.02em;
  font-size: 1.1rem;
  font-weight: 900;
}

.bot-pnl {
  margin: .75rem 0;
}

.performance-dashboard {
  -webkit-backdrop-filter: blur(40px);
  backdrop-filter: blur(40px);
  background: rgba(255, 255, 255, .01);
  border: 1px solid rgba(255, 255, 255, .03);
  margin-top: 4rem;
  padding: 4rem;
}

.stat-card {
  background: rgba(255, 255, 255, .02);
  border: 1px solid rgba(255, 255, 255, .05);
  border-radius: 2rem;
  flex-direction: column;
  padding: 2rem;
  display: flex;
}

.stat-label {
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .7rem;
  font-weight: 900;
}

.stat-value {
  font-weight: 900;
}

@keyframes pulse-glow {
  0% {
    transform: scale(1);
    box-shadow: 0 0 rgba(34, 197, 94, .4);
  }

  70% {
    transform: scale(1.1);
    box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 rgba(34, 197, 94, 0);
  }
}

.live-indicator {
  background: #22c55e;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  animation: 2s infinite pulse-glow;
}

/*# sourceMappingURL=src_app_trading-lab_trading-lab_f62d2a46.css.map*/