/* Market sidebar widget — compact */
.sidebar-panel--market {
    background: linear-gradient(180deg, #fffdf8 0%, #f4f7fb 100%);
}

.market-widget__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.market-widget__list--commodities {
    margin-top: 4px;
    padding-top: 4px;
    border-top: 1px dashed #e8dfd0;
}

.market-widget__item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 6px;
    padding: 5px 0;
    border-bottom: 1px solid #ebe4d8;
    font-size: 13px;
    line-height: 1.2;
}

.market-widget__item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.market-widget__name {
    font-weight: 800;
    color: #17120f;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.market-widget__price {
    font-weight: 900;
    color: #17120f;
    font-size: 13px;
    white-space: nowrap;
}

.market-widget__chg {
    font-size: 11px;
    font-weight: 800;
    white-space: nowrap;
    min-width: 48px;
    text-align: right;
}

.market-widget__chg--up { color: #067647; }
.market-widget__chg--down { color: #b42318; }
.market-widget__chg--flat { color: #6f6256; }
