.cointrade-futures-container {
  color:#fff;
}

.cointrade-main-grid {
  display:grid;
  grid-template-columns: 300px 1fr;
  gap:20px;
}

.cointrade-order-panel,
.cointrade-orderbook {
  background:#1e293b;
  padding:15px;
  border-radius:8px;
  border-width: 1px;
  border-color: #334155;
  margin-bottom: 10px;
}

.cointrade-positions {
  margin-top: 5px;
  background:#1e293b;
  border-radius: 8px;
  padding: 15px;
  margin-top: 10px;
}

.cointrade-chart {
    margin-top: 5px;
  background:#1e293b;
  border-radius: 8px;
  max-height: 200px;
}
.lab-text {
    font-size: 15px;
    color: #cbd5e1;
    font-weight: 600;
}

.no-position {
    color: #64748b;
    font-size: 14px;
    text-align: center;
}
.h-text {
    font-size :20px;
    font-weight: 700;
    text-align: center;
    color: #cbd5e1;
}
.futures-asks {
    color: #f6465d;
}
.futures-bids {
    color: #0ecb81;
}

.th {
    border: #334155;
    border-radius: 8px;
}

.f-text {
    border-bottom-width: 1px;
    border-color: #334155;
}
.pos-but-one {
    font-size: 14px;
    color: #22d3ee;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 6px;
    padding-bottom: 6px;
    border-bottom-width: 2px;
    border-color: #22d3ee;
    border-top-width: 0px;
    border-right-width: 0px;
    border-left-width: 0px;
}

.pos-but-two {
    font-size: 14px;
    color: #94a3b8;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 6px;
    padding-bottom: 6px;
    border: none;
}
.toggle {
    display: flex;
    gap: 3px;
}
.togg-text {
    margin-top: 20px;
    margin-bottom: 1px;
}

.lit {
    font-size: 14px;
    font-weight: 500;
    color: #cbd5e1;
}
.slipt-me {
    display: flex;
    justify-content: space-between;
}

.toggle button {
 /* width:50%; */
  padding:8px;
  background:#334155;
  color:#cbd5e1;
  border:none;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.toggle .active {
  background: #0891b2;
}

.select-css {
    font-size: 14px;
    background-color: #334155;
    border-radius: 8px !important;
    padding: 5px;
    border-color: #475569 !important;
    color: #fff;
    margin-top: 2px;
}

.primary {
  width:100%;
  margin-top:10px;
  padding:10px;
  background:#00c087;
  border:none;
  border-radius: 8px;
  color:#fff;
  font-weight:bold;
}
.orderbook {
    background: #0b0e11;
    border: 1px solid #1e2329;
    border-radius: 8px;
    padding: 10px;
}

.orderbook-header {
    font-size: 14px;
    font-weight: 600;
    color: #eaecef;
    margin-bottom: 8px;
}

.orderbook-grid ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.orderbook-grid li {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    padding: 2px 0;
}

.orderbook-grid .asks li {
    color: #f6465d;
}

.orderbook-grid .bids li {
    color: #0ecb81;
}

.h4-ask {
    color: #f6465d;
    font-size: 18px;
    font-weight: 600;
}
.h4-buy {
    color: #0ecb81;
    font-size: 18px;
    font-weight: 600;
}
.ticker {
    justify-self: center;
}

.ticker-pair {
    font-size: 16px;
    color: #cbd5e1;
    font-weight: 600;
    text-align: center;
}

.ticker-price {
    font-size: 30px;
    font-weight: 700;
    color: #22d3ee;
    text-align: center;
}

.ticker-change.positive {
    color: #4ade80;
    text-align: center;
    font-weight: 800;
    font-size: 16px;
}

.ticker-change.negative {
    color: #f6465d;
    text-align: center;
    font-weight: 800;
    font-size: 16px;
}
@media (max-width: 768px) {
    .cointrade-main-grid {
        display: block;
    }
}