/* ==========================================================
   TTSM LIVE GRID
   MKT-004B
========================================================== */

.market-grid{

    width:100%;

    overflow-x:auto;

    color:#E5E7EB;

    font-family:Inter,sans-serif;

}

.market-header,
.market-row{

    display:grid;

    grid-template-columns:
        50px
        90px
        90px
        90px
        90px
        90px
        120px
        140px;

    align-items:center;

    min-width:760px;

}

.market-header{

    background:#161B22;

    font-weight:700;

    position:sticky;

    top:0;

    border-bottom:1px solid #30363D;

}

.market-row{

    border-bottom:1px solid #222;

}

.market-row:hover{

    background:#111827;

}

.cell{

    padding:10px;

    white-space:nowrap;

}

.market-row.positive .change{

    color:#22C55E;

}

.market-row.negative .change{

    color:#EF4444;

}

.market-row.neutral .change{

    color:#9CA3AF;

}