/* ============================================
   Futures Trading Page - Specific Styles
   Loads trade-option.css for shared styles
   ============================================ */

/* Leverage Slider */
.leverage-section { margin-bottom: 16px; }
.leverage-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.leverage-label { font-size: 12px; color: #6a6a7a; font-weight: 500; }
.leverage-value { font-size: 14px; font-weight: 700; color: #5cb8e6; }
.leverage-slider { width: 100%; -webkit-appearance: none; height: 4px; border-radius: 2px; background: rgba(255,255,255,0.08); outline: none; }
.leverage-slider::-webkit-slider-thumb { -webkit-appearance: none; width: 18px; height: 18px; border-radius: 50%; background: #5cb8e6; cursor: pointer; box-shadow: 0 2px 8px rgba(92,184,230,0.3); }
.leverage-presets { display: flex; gap: 4px; margin-top: 6px; }
.leverage-preset-btn { flex: 1; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); color: #6a6a7a; font-size: 11px; font-weight: 600; padding: 5px 0; border-radius: 4px; cursor: pointer; transition: all 0.15s; }
.leverage-preset-btn:hover { color: #e0e0e8; border-color: rgba(255,255,255,0.12); }
.leverage-preset-btn.active { color: #5cb8e6; border-color: rgba(92,184,230,0.3); background: rgba(92,184,230,0.06); }

/* Funding Rate Display */
.funding-info { display: flex; align-items: center; gap: 12px; padding: 10px 16px; background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.04); border-radius: 8px; margin-bottom: 16px; }
.funding-item { display: flex; flex-direction: column; gap: 2px; }
.funding-item-label { font-size: 10px; color: #5a5a6a; text-transform: uppercase; letter-spacing: 0.3px; }
.funding-item-value { font-size: 12px; font-weight: 600; color: #a8a8b8; font-variant-numeric: tabular-nums; }
.funding-item-value.positive { color: #4ecb71; }
.funding-item-value.negative { color: #e65c5c; }

/* Active Contracts List */
.contracts-list { }
.contract-row { display: flex; align-items: center; justify-content: space-between; padding: 12px 16px; border-bottom: 1px solid rgba(255,255,255,0.04); cursor: pointer; transition: background 0.1s; }
.contract-row:hover { background: rgba(255,255,255,0.02); }
.contract-row.active { background: rgba(92,184,230,0.04); border-left: 3px solid #5cb8e6; }
.contract-info { display: flex; flex-direction: column; gap: 2px; }
.contract-symbol { font-size: 14px; font-weight: 600; color: #e0e0e8; }
.contract-type { font-size: 11px; color: #6a6a7a; }
.contract-price-info { text-align: right; display: flex; flex-direction: column; gap: 2px; }
.contract-price { font-size: 14px; font-weight: 600; color: #e0e0e8; font-variant-numeric: tabular-nums; }
.contract-change { font-size: 11px; font-weight: 500; }
.contract-change.positive { color: #4ecb71; }
.contract-change.negative { color: #e65c5c; }

/* Liquidation Price Warning */
.liq-warning { display: flex; align-items: center; gap: 8px; padding: 10px 14px; background: rgba(230,92,92,0.06); border: 1px solid rgba(230,92,92,0.12); border-radius: 8px; margin-top: 12px; font-size: 12px; color: #e65c5c; }
.liq-warning svg { flex-shrink: 0; }
