:root {
  --primary-bg: #0f172a;
  --card-bg: rgba(30, 41, 59, 0.7);
  --card-border: rgba(99, 102, 241, 0.2);
  --primary: #006600;
  --success: #10b981;
  --danger: #ef4444;
  --warning: #f59e0b;
  --info: #0ea5e9;
  --text-primary: #f8fafc;
  --text-secondary: #cbd5e1;
  --text-muted: #94a3b8;
  --glass-bg: rgba(30, 41, 59, 0.5);
  --glass-border: rgba(148, 163, 184, 0.1);
}
/* Trading Table Styles */
section.live-trading {
  position: relative;
  overflow: hidden;
  background: url("../../assets/images/trading-tabel2.jpg") no-repeat center
    center/cover;
  padding: 5rem 0rem; 
  color: white;
}

section.live-trading::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  background: black;
}
.section__title.relative {
  position: relative;
}
.signals-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 16px rgba(2, 8, 20, 0.3);
  overflow: hidden;
  margin-top: 4rem;
  border: 1px solid gray;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.card-title {
  font-size: 20px;
  font-weight: 600;
}

.filters {
  display: flex;
  gap: 15px;
  background: rgba(15, 23, 42, 0.5);
  padding: 8px 16px;
  border-radius: 50px;
  border: 1px solid var(--glass-border);
}

.filter-btn {
  padding: 6px 15px;
  border-radius: 50px;
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--primary);
  color: white;
}

.table-header {
  display: flex;
  padding: 12px 20px;
  background: rgba(15, 23, 42, 0.5);
  border-radius: 12px;
  margin-bottom: 10px;
  font-weight: 600;
  color: var(--text-muted);
  font-size: 14px;
}

.table-row {
  display: flex;
  padding: 15px 20px;
  background: rgba(15, 23, 42, 0.3);
  border-radius: 12px;
  margin-bottom: 8px;
  align-items: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.table-row:hover {
  background: rgba(30, 41, 59, 0.7);
  transform: translateX(5px);
}

.table-row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: var(--primary);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.table-row:hover::before {
  opacity: 1;
}

.table-cell {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.asset {
  flex: 1.5;
}

.action,
.confidence,
.entry,
.stop,
.target,
.duration,
.status {
  flex: 1;
}

.status {
  justify-content: flex-end;
}

.icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
}

.gold {
  background: linear-gradient(135deg, #ffd700, #ffa500);
}
.eurusd {
  background: linear-gradient(135deg, #003087, #009cde);
}
.us100 {
  background: linear-gradient(135deg, #800080, #4b0082);
}
.xrp {
  background: linear-gradient(135deg, #00aae4, #23292f);
}
.natural {
  background: linear-gradient(135deg, #00ff7f, #008000);
}

.signal-bars {
  display: flex;
  gap: 3px;
  height: 20px;
  align-items: flex-end;
}

.signal-bar {
  width: 4px;
  background: var(--text-muted);
  border-radius: 2px;
}

.signal-bar.active {
  background: var(--success);
}

.btn {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn i {
  margin-right: 5px;
}

.btn:active {
  transform: scale(0.98);
}

.buy-limit {
  background: var(--success);
  color: white;
}

.sell-limit {
  background: var(--danger);
  color: white;
}

.premium {
  background: linear-gradient(135deg, var(--primary), #ddb500);
  color: white;
}

.live-trade {
  background: var(--warning);
  color: white;
}

.close-trade {
  background: var(--text-primary);
  color: var(--primary-bg);
}

/* Responsive Design */
@media (max-width: 768px) {
  .filters {
    /* flex-wrap: wrap; */
    border-radius: 12px;
  }
}

