/* Corrected filename: market.css */
.market-panel{
    background:#2f3136;
    color:white;
    border-radius:12px;
    padding:16px;
}

.market-panel h3{
    margin:0 0 16px;
    font-size:18px;
}

.market-odds-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:10px;
}

.market-odd-card{
    background:#24262b;
    border-radius:10px;
    padding:14px 10px;
    text-align:center;
    border-top:4px solid #64748b;
}

.market-odd-card.home{
    border-top-color:#22c55e;
}

.market-odd-card.draw{
    border-top-color:#f59e0b;
}

.market-odd-card.away{
    border-top-color:#ef4444;
}

.market-odd-card span{
    display:block;
    color:#cbd5e1;
    font-size:12px;
    margin-bottom:6px;
    text-transform:uppercase;
    font-weight:700;
}

.market-odd-card strong{
    font-size:24px;
}

.market-reading{
    margin-top:16px;
    padding-top:14px;
    border-top:1px solid #444851;
}

.market-title{
    color:#20d4c7;
    font-weight:800;
    font-size:13px;
    text-transform:uppercase;
    margin-bottom:10px;
}

.market-reading p{
    margin:8px 0;
    color:#e5e7eb;
    font-size:14px;
}

.market-balance{
    margin-top:16px;
    background:#202226;
    border-radius:12px;
    padding:14px;
}

.market-balance span{
    display:block;
    font-size:13px;
    color:#cbd5e1;
    margin-bottom:8px;
}

.market-bar{
    height:10px;
    background:#3a3d44;
    border-radius:999px;
    overflow:hidden;
    margin-bottom:8px;
}

.market-bar div{
    height:100%;
    background:#20d4c7;
}

.market-balance strong{
    font-size:18px;
}

@media(max-width:900px){
    .market-odds-grid{
        grid-template-columns:1fr;
    }
}




.market-extra{
    margin-top:16px;
    padding-top:14px;
    border-top:1px solid #444851;
}

.market-mini{
    background:#202226;
    border-radius:10px;
    padding:10px;
    margin-top:10px;
}

.market-mini strong{
    display:block;
    color:white;
    margin-bottom:8px;
    font-size:13px;
}

.market-mini span{
    display:inline-block;
    background:#2f3136;
    color:#e5e7eb;
    border-radius:999px;
    padding:5px 8px;
    font-size:12px;
    margin:3px 4px 3px 0;
}



.market-table {
    padding: 12px;
}

.market-table > strong {
    display: block;
    margin-bottom: 10px;
    color: #fff;
}

.market-table-row {
    display: grid;
    gap: 8px;
}

.market-table-row.three {
    grid-template-columns: repeat(3, 1fr);
}

.market-table-row.two {
    grid-template-columns: repeat(2, 1fr);
}

.market-table-row div {
    background: #2b2f38;
    border-radius: 10px;
    padding: 9px 6px;
    text-align: center;
}

.market-table-row span {
    display: block;
    font-size: 10px;
    color: #30d5c8;
    font-weight: 800;
    margin-bottom: 4px;
}

.market-table-row b {
    display: block;
    font-size: 16px;
    color: #fff;
}