.dashboard-v2 {
    --v2-bg: #090b0e;
    --v2-top: #0d1014;
    --v2-sidebar: #0c0f13;
    --v2-panel: #11151a;
    --v2-panel-2: #171c23;
    --v2-panel-3: #1d242d;
    --v2-line: #2a323d;
    --v2-line-soft: #20262f;
    --v2-text: #f2f5f8;
    --v2-muted: #8d99a8;
    --v2-blue: #4aa8ff;
    --v2-blue-soft: #112c45;
    --v2-green: #2dd69b;
    --v2-green-soft: #102f28;
    --v2-red: #ff667d;
    --v2-red-soft: #371b23;
    --v2-yellow: #f1c75b;
    --v2-yellow-soft: #342c17;
    min-width: 320px;
    background: var(--v2-bg);
    color: var(--v2-text);
    font-family: Inter, "Segoe UI", "Microsoft YaHei", sans-serif;
    font-size: 16px;
    line-height: 1.45;
}

.dashboard-v2 button,
.dashboard-v2 a,
.dashboard-v2 input {
    letter-spacing: 0;
}

.v2-app { min-height: 100vh; }

.v2-topbar {
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 0 24px;
    border-bottom: 1px solid var(--v2-line-soft);
    background: var(--v2-top);
}

.v2-brand { display: flex; align-items: center; gap: 12px; min-width: 0; }
.v2-brand-mark {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 7px;
    color: #07111a;
    background: var(--v2-blue);
}
.v2-brand-title { font-size: 18px; font-weight: 760; white-space: nowrap; }
.v2-brand-subtitle { margin-top: 1px; color: var(--v2-muted); font-size: 12px; }

.dashboard-v2 .topbar-actions { display: flex; align-items: center; gap: 9px; }
.dashboard-v2 .env-switch-group {
    display: flex;
    padding: 3px;
    border: 1px solid var(--v2-line);
    border-radius: 7px;
    background: var(--v2-panel-2);
}
.dashboard-v2 .env-switch {
    padding: 6px 11px;
    border: 0;
    border-radius: 5px;
    color: var(--v2-muted);
    background: transparent;
    font-size: 13px;
}
.dashboard-v2 .env-switch.active { color: var(--v2-blue); background: var(--v2-blue-soft); }
.dashboard-v2 .env-pill {
    padding: 6px 9px;
    border: 1px solid #5a4820;
    border-radius: 6px;
    color: var(--v2-yellow);
    background: var(--v2-yellow-soft);
    font-size: 11px;
    font-weight: 800;
}
.dashboard-v2 .toolbar-button {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 7px 10px;
    border: 1px solid var(--v2-line);
    border-radius: 6px;
    color: #cbd3dc;
    background: transparent;
    font-size: 13px;
}
.dashboard-v2 .toolbar-button:hover { color: white; border-color: #3b4653; background: var(--v2-panel-2); }
.dashboard-v2 .toolbar-button.icon-only { width: 34px; padding: 0; }

.v2-shell { display: grid; grid-template-columns: 196px minmax(0, 1fr); min-height: calc(100vh - 66px); }
.v2-sidebar {
    position: relative;
    padding: 22px 14px 92px;
    border-right: 1px solid var(--v2-line-soft);
    background: var(--v2-sidebar);
}
.v2-nav-label { padding: 0 10px 9px; color: #66717f; font-size: 11px; font-weight: 800; text-transform: uppercase; }
.dashboard-v2 .sidebar-nav { display: grid; gap: 6px; }
.dashboard-v2 .nav-item {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 10px 12px;
    border: 1px solid transparent;
    border-radius: 6px;
    color: #9ca8b6;
    background: transparent;
    font-size: 14px;
    text-align: left;
}
.dashboard-v2 .nav-item:hover,
.dashboard-v2 .nav-item.active { color: #ddecfb; border-color: #1a3852; background: var(--v2-blue-soft); }
.v2-sidebar-status {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding-top: 12px;
    border-top: 1px solid var(--v2-line-soft);
    color: #a8b2bd;
    font-size: 12px;
}
.v2-sidebar-status small { display: block; margin-top: 8px; color: #677380; }
.v2-status-dot { display: inline-block; width: 7px; height: 7px; margin-right: 7px; border-radius: 50%; background: var(--v2-green); }

.v2-workspace { min-width: 0; padding: 22px 24px 26px; }
.v2-page-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 18px; scroll-margin-top: 18px; }
.v2-page-head h1 { margin: 0; font-size: 25px; font-weight: 760; }
.v2-page-head p { margin: 5px 0 0; color: var(--v2-muted); font-size: 13px; }
.v2-market-status { display: flex; align-items: center; gap: 5px; color: var(--v2-muted); font-size: 12px; white-space: nowrap; }
.v2-market-status strong { color: var(--v2-green); font-weight: 700; }
.v2-market-status span::before { content: "·"; margin-right: 5px; }

.v2-overview {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: 16px;
    border: 1px solid var(--v2-line);
    border-radius: 8px;
    overflow: hidden;
    background: var(--v2-panel);
}
.dashboard-v2 .overview-card {
    min-height: 94px;
    display: block;
    padding: 16px 18px;
    border: 0;
    border-right: 1px solid var(--v2-line-soft);
    border-radius: 0;
    background: var(--v2-panel);
    box-shadow: none;
}
.dashboard-v2 .overview-card:last-child { border-right: 0; }
.dashboard-v2 .overview-label { color: var(--v2-muted); font-size: 12px; }
.dashboard-v2 .overview-value { margin-top: 7px; font-size: 24px; line-height: 1.2; font-weight: 760; font-variant-numeric: tabular-nums; }
.dashboard-v2 .overview-meta { margin-top: 4px; color: var(--v2-muted); font-size: 12px; }
.dashboard-v2 .overview-icon { display: none; }
.dashboard-v2 .loading-state { grid-column: 1 / -1; min-height: 92px; display: flex; align-items: center; justify-content: center; color: var(--v2-muted); }

.v2-content-grid { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 16px; align-items: start; }
.v2-main-stack,
.v2-side-stack { min-width: 0; display: grid; gap: 16px; }
.v2-panel { border: 1px solid var(--v2-line); border-radius: 8px; overflow: hidden; background: var(--v2-panel); }
.v2-panel-head {
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 16px;
    border-bottom: 1px solid var(--v2-line-soft);
}
.v2-panel-head h2 { margin: 0; font-size: 16px; font-weight: 760; }
.v2-panel-head p,
.dashboard-v2 .panel-meta { margin: 2px 0 0; color: var(--v2-muted); font-size: 11px; }
.v2-panel-head.compact { align-items: center; }
.dashboard-v2 .inline-link { color: var(--v2-blue); font-size: 12px; }

.dashboard-v2 .positions-table-wrap,
.dashboard-v2 .levels-wrap { overflow-x: auto; }
.dashboard-v2 .positions-table,
.dashboard-v2 .levels-table { width: 100%; border-collapse: collapse; table-layout: fixed; }
.dashboard-v2 .positions-table thead tr,
.dashboard-v2 .levels-table thead tr { background: #151a20; }
.dashboard-v2 .positions-table th,
.dashboard-v2 .positions-table td,
.dashboard-v2 .levels-table th,
.dashboard-v2 .levels-table td {
    padding: 0 12px;
    border-bottom: 1px solid var(--v2-line-soft);
    text-align: left;
    white-space: nowrap;
}
.dashboard-v2 .positions-table th,
.dashboard-v2 .levels-table th { height: 42px; color: #7f8a97; font-size: 12px; font-weight: 760; }
.dashboard-v2 .positions-table td { height: 66px; font-size: 14px; font-variant-numeric: tabular-nums; }
.dashboard-v2 .levels-table td { height: 42px; font-size: 13px; font-variant-numeric: tabular-nums; }
.dashboard-v2 .positions-table tbody tr:last-child td,
.dashboard-v2 .levels-table tbody tr:last-child td { border-bottom: 0; }
.dashboard-v2 .col-symbol { width: 22%; }
.dashboard-v2 .col-state { width: 19%; }
.dashboard-v2 .col-direction { width: 13%; }
.dashboard-v2 .col-entry { width: 13%; }
.dashboard-v2 .col-price { width: 13%; }
.dashboard-v2 .col-pnl { width: 12%; }
.dashboard-v2 .col-actions { width: 8%; }
.dashboard-v2 .position-row { cursor: pointer; touch-action: manipulation; transition: background 0.15s ease; }
.dashboard-v2 .position-row:hover { background: #141a21; }
.dashboard-v2 .position-row.active { background: #151f2a; box-shadow: inset 3px 0 var(--v2-blue); }
.dashboard-v2 .symbol-cell { display: flex; align-items: center; gap: 10px; }
.dashboard-v2 .coin-badge { width: 32px; height: 32px; flex: 0 0 auto; border-radius: 50%; color: white; font-size: 10px; font-weight: 800; background: #576df1; }
.dashboard-v2 .coin-badge.btc { background: #ef9426; }
.dashboard-v2 .coin-badge.eth { background: #627de8; }
.dashboard-v2 .coin-badge.bnb { background: #d2a91c; }
.dashboard-v2 .coin-badge.generic { background: #576df1; }
.dashboard-v2 .symbol-name { font-size: 14px; font-weight: 760; }
.dashboard-v2 .symbol-sub { margin-top: 2px; color: var(--v2-muted); font-size: 11px; }
.dashboard-v2 .status-stack { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.dashboard-v2 .status-pill,
.dashboard-v2 .mode-badge,
.dashboard-v2 .auto-badge {
    min-width: 0;
    padding: 4px 7px;
    border-radius: 5px;
    border: 0;
    font-size: 10px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: 0;
}
.dashboard-v2 .status-pill { color: #a7b4c2; background: #252e39; }
.dashboard-v2 .mode-badge { color: var(--v2-green); background: var(--v2-green-soft); }
.dashboard-v2 .auto-badge { color: var(--v2-blue); background: var(--v2-blue-soft); }
.dashboard-v2 .state-holding { color: var(--v2-blue); background: var(--v2-blue-soft); }
.dashboard-v2 .state-adding,
.dashboard-v2 .state-shorting { color: var(--v2-yellow); background: var(--v2-yellow-soft); }
.dashboard-v2 .state-paused { color: #c4ccd5; background: #2a3038; }
.dashboard-v2 .state-closing_take_profit { color: var(--v2-green); background: var(--v2-green-soft); }
.dashboard-v2 .state-closing_stop_loss,
.dashboard-v2 .state-closing_external { color: var(--v2-red); background: var(--v2-red-soft); }
.dashboard-v2 .direction-cell { display: flex; align-items: center; gap: 5px; }
.dashboard-v2 .position-pnl { display: grid; gap: 2px; }
.dashboard-v2 .position-pnl small { color: inherit; font-size: 11px; }
.dashboard-v2 .row-actions { display: flex; gap: 6px; }
.dashboard-v2 .mini-action {
    width: 30px;
    height: 30px;
    padding: 0;
    border: 1px solid var(--v2-line);
    border-radius: 6px;
    color: #bec8d3;
    background: var(--v2-panel-2);
}
.dashboard-v2 .mini-action:hover:not(:disabled) { color: white; border-color: #465260; background: var(--v2-panel-3); }
.dashboard-v2 .mini-action:disabled { opacity: 0.35; }
.dashboard-v2 .positive-text { color: var(--v2-green) !important; }
.dashboard-v2 .negative-text { color: var(--v2-red) !important; }

.v2-detail-head { align-items: flex-start; }
.dashboard-v2 .detail-actions { display: flex; align-items: center; justify-content: flex-end; gap: 7px; flex-wrap: wrap; }
.dashboard-v2 .action-button {
    min-height: 32px;
    padding: 6px 10px;
    border: 1px solid var(--v2-line);
    border-radius: 6px;
    color: #cdd5de;
    background: var(--v2-panel-2);
    font-size: 11px;
}
.dashboard-v2 .action-button:hover:not(:disabled) { color: white; border-color: #465260; }
.dashboard-v2 .action-button.soft { color: #ffb0bc; background: var(--v2-red-soft); }
.dashboard-v2 .action-button.warn { color: var(--v2-yellow); background: var(--v2-yellow-soft); }
.dashboard-v2 .action-button.good { color: var(--v2-green); background: var(--v2-green-soft); }
.dashboard-v2 .action-button.primary { color: #d9edff; border-color: #214d71; background: var(--v2-blue-soft); }
.dashboard-v2 .action-button:disabled { opacity: 0.38; }

.dashboard-v2 .grid-price-chart {
    border-bottom: 1px solid var(--v2-line-soft);
    background: #0d1218;
}
.dashboard-v2 .grid-price-chart[hidden] { display: none; }
.dashboard-v2 .grid-price-chart-head {
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 8px 14px;
    border-bottom: 1px solid var(--v2-line-soft);
}
.dashboard-v2 .grid-price-chart-head h3 { margin: 0; color: #dce2e9; font-size: 13px; font-weight: 760; }
.dashboard-v2 .grid-price-chart-head p { margin: 3px 0 0; color: var(--v2-muted); font-size: 11px; }
.dashboard-v2 .grid-price-chart-legend { display: flex; align-items: center; justify-content: flex-end; gap: 14px; flex-wrap: wrap; color: #8c98a6; font-size: 11px; }
.dashboard-v2 .grid-price-chart-legend span { display: inline-flex; align-items: center; gap: 5px; white-space: nowrap; }
.dashboard-v2 .grid-price-chart-legend i { width: 16px; height: 2px; display: inline-block; border-radius: 2px; background: #596bff; }
.dashboard-v2 .grid-price-chart-legend .legend-live { height: 3px; background: #4aa8ff; }
.dashboard-v2 .grid-price-chart-legend .legend-profit { background: var(--v2-green); }
.dashboard-v2 .grid-price-chart-legend .legend-stop { background: var(--v2-red); }
.dashboard-v2 .grid-price-canvas-wrap { width: 100%; height: 250px; padding: 8px 10px 6px; }
.dashboard-v2 #grid-price-canvas { width: 100%; height: 100%; display: block; }

.v2-detail-grid { display: grid; grid-template-columns: minmax(310px, 36%) minmax(0, 1fr); min-height: 260px; }
.v2-key-panel { border-right: 1px solid var(--v2-line-soft); }
.v2-level-panel { min-width: 0; }
.v2-subhead { min-height: 40px; display: flex; align-items: center; padding: 0 14px; border-bottom: 1px solid var(--v2-line-soft); color: #dce2e9; font-size: 13px; font-weight: 760; }
.dashboard-v2 .key-metrics { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0; background: transparent; }
.dashboard-v2 .key-metric {
    min-width: 0;
    min-height: 72px;
    padding: 12px 14px;
    border-right: 1px solid var(--v2-line-soft);
    border-bottom: 1px solid var(--v2-line-soft);
    background: var(--v2-panel);
}
.dashboard-v2 .key-metric:nth-child(2n) { border-right: 0; }
.dashboard-v2 .key-metric span { color: var(--v2-muted); font-size: 12px; }
.dashboard-v2 .key-metric strong { margin-top: 6px; font-size: 15px; white-space: normal; overflow-wrap: anywhere; }
.dashboard-v2 .runtime-stop-editor { grid-template-columns: minmax(0, 1fr) 30px; gap: 6px; margin-top: 6px; }
.dashboard-v2 .runtime-stop-input {
    height: 30px;
    min-width: 0;
    padding: 5px 8px;
    border: 1px solid var(--v2-line);
    border-radius: 6px;
    color: var(--v2-text);
    background: #0d1116;
    font-size: 13px;
}
.dashboard-v2 .runtime-stop-hint { margin-top: 5px; color: var(--v2-muted); font-size: 9px; }

.dashboard-v2 .levels-table th,
.dashboard-v2 .levels-table td { padding: 0 10px; }
.dashboard-v2 .empty-table { padding: 18px 12px !important; color: var(--v2-muted); text-align: center; font-size: 13px; }

.dashboard-v2 .side-panel { min-width: 0; }
.dashboard-v2 .event-stream { max-height: 350px; padding: 5px 14px 8px; gap: 0; }
.dashboard-v2 .event-item {
    display: grid;
    grid-template-columns: 8px minmax(0, 1fr);
    align-items: start;
    gap: 10px;
    padding: 12px 0;
    border-bottom: 1px solid var(--v2-line-soft);
}
.dashboard-v2 .event-dot { width: 8px; height: 8px; margin-top: 6px; }
.dashboard-v2 .event-body { min-width: 0; }
.dashboard-v2 .event-meta { display: flex; align-items: center; gap: 10px; min-width: 0; }
.dashboard-v2 .event-time { flex: 0 0 auto; color: var(--v2-muted); font-size: 12px; font-variant-numeric: tabular-nums; }
.dashboard-v2 .event-symbol { min-width: 0; color: #dce3eb; font-size: 12px; font-weight: 750; overflow: hidden; text-overflow: ellipsis; }
.dashboard-v2 .event-text { min-width: 0; margin-top: 5px; color: #b8c2cd; font-size: 13px; line-height: 1.5; overflow-wrap: anywhere; }
.dashboard-v2 .event-empty { padding: 24px 0; color: var(--v2-muted); text-align: center; font-size: 13px; }
.dashboard-v2 .event-dot.info { background: var(--v2-blue); }
.dashboard-v2 .event-dot.warn { background: var(--v2-yellow); }
.dashboard-v2 .event-dot.danger { background: var(--v2-red); }

.dashboard-v2 .risk-box { margin: 0; padding: 15px; border: 0; border-radius: 0; background: var(--v2-panel); }
.dashboard-v2 .risk-box.safe,
.dashboard-v2 .risk-box.warn,
.dashboard-v2 .risk-box.danger { border: 0; }
.dashboard-v2 .risk-title { font-size: 14px; font-weight: 760; }
.dashboard-v2 .risk-caption { margin-top: 5px; color: var(--v2-muted); font-size: 12px; }
.dashboard-v2 .risk-bar { height: 7px; margin-top: 14px; border-radius: 4px; background: #242b34; }
.dashboard-v2 .risk-bar span { border-radius: 4px; background: var(--v2-green); }
.dashboard-v2 .risk-box.warn .risk-bar span { background: var(--v2-yellow); }
.dashboard-v2 .risk-box.danger .risk-bar span { background: var(--v2-red); }
.dashboard-v2 .daily-strategy-box { padding: 15px; }
.dashboard-v2 .daily-strategy-box.enabled { box-shadow: inset 3px 0 var(--v2-green); }
.dashboard-v2 .daily-strategy-box.disabled { box-shadow: inset 3px 0 #4b5563; }
.dashboard-v2 .daily-symbols { margin-top: 12px; color: #dce3eb; font-size: 12px; overflow-wrap: anywhere; }
.dashboard-v2 .panel-focus { box-shadow: 0 0 0 2px rgba(74, 168, 255, 0.35); }

@media (max-width: 1180px) {
    .v2-shell { grid-template-columns: 74px minmax(0, 1fr); }
    .v2-sidebar { padding-inline: 10px; }
    .v2-nav-label,
    .dashboard-v2 .nav-item span,
    .v2-sidebar-status { display: none; }
    .dashboard-v2 .nav-item { justify-content: center; padding-inline: 8px; }
    .v2-content-grid { grid-template-columns: minmax(0, 1fr) 310px; }
}

@media (max-width: 1040px) {
    .v2-content-grid { grid-template-columns: 1fr; }
    .v2-side-stack { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .dashboard-v2 .event-stream { max-height: 260px; }
}

@media (max-width: 820px) {
    .v2-topbar { height: auto; min-height: 66px; align-items: flex-start; padding: 12px 14px; }
    .v2-brand-title { font-size: 14px; }
    .dashboard-v2 .topbar-actions { justify-content: flex-end; flex-wrap: wrap; }
    .dashboard-v2 .toolbar-button span { display: none; }
    .v2-shell { grid-template-columns: 1fr; }
    .v2-sidebar { padding: 8px 12px; border-right: 0; border-bottom: 1px solid var(--v2-line-soft); }
    .dashboard-v2 .sidebar-nav { display: flex; flex-direction: row; }
    .dashboard-v2 .nav-item { width: auto; }
    .dashboard-v2 .nav-item span { display: inline; }
    .v2-workspace { padding: 16px 12px 20px; }
    .v2-page-head { align-items: flex-start; }
    .v2-overview { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .dashboard-v2 .overview-card:nth-child(2) { border-right: 0; }
    .dashboard-v2 .overview-card:nth-child(-n+2) { border-bottom: 1px solid var(--v2-line-soft); }
    .v2-detail-grid { grid-template-columns: 1fr; }
    .v2-key-panel { border-right: 0; border-bottom: 1px solid var(--v2-line-soft); }
    .dashboard-v2 .grid-price-chart-head { align-items: flex-start; flex-direction: column; gap: 8px; }
    .dashboard-v2 .grid-price-chart-legend { justify-content: flex-start; gap: 10px; }
    .dashboard-v2 .grid-price-canvas-wrap { height: 220px; }
    .dashboard-v2 .positions-table { min-width: 780px; }
}

@media (max-width: 560px) {
    .v2-brand-subtitle,
    .v2-market-status { display: none; }
    .dashboard-v2 .env-pill { display: none; }
    .dashboard-v2 .topbar-actions > .toolbar-button { display: none; }
    .dashboard-v2 .sidebar-nav { overflow-x: auto; }
    .dashboard-v2 .nav-item { white-space: nowrap; }
    .v2-page-head h1 { font-size: 20px; }
    .v2-overview { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .dashboard-v2 .overview-card { border-right: 0; border-bottom: 1px solid var(--v2-line-soft); }
    .dashboard-v2 .overview-card:last-child { border-bottom: 0; }
    .dashboard-v2 .positions-table { min-width: 0; table-layout: fixed; }
    .dashboard-v2 .positions-table col:nth-child(3),
    .dashboard-v2 .positions-table col:nth-child(4),
    .dashboard-v2 .positions-table col:nth-child(5),
    .dashboard-v2 .positions-table col:nth-child(7),
    .dashboard-v2 .positions-table th:nth-child(3),
    .dashboard-v2 .positions-table th:nth-child(4),
    .dashboard-v2 .positions-table th:nth-child(5),
    .dashboard-v2 .positions-table th:nth-child(7),
    .dashboard-v2 .positions-table td:nth-child(3),
    .dashboard-v2 .positions-table td:nth-child(4),
    .dashboard-v2 .positions-table td:nth-child(5),
    .dashboard-v2 .positions-table td:nth-child(7) { display: none; }
    .dashboard-v2 .positions-table col:nth-child(1) { width: 42%; }
    .dashboard-v2 .positions-table col:nth-child(2) { width: 34%; }
    .dashboard-v2 .positions-table col:nth-child(6) { width: 24%; }
    .dashboard-v2 .positions-table th,
    .dashboard-v2 .positions-table td { padding-inline: 8px; }
    .dashboard-v2 .coin-badge { width: 28px; height: 28px; }
    .dashboard-v2 .status-stack { align-items: flex-start; gap: 3px; flex-direction: column; }
    .dashboard-v2 .position-pnl { align-items: flex-end; }
    .v2-side-stack { grid-template-columns: 1fr; }
    .v2-detail-head { align-items: stretch; flex-direction: column; }
    .dashboard-v2 .detail-actions {
        width: 100%;
        align-items: center;
        justify-content: flex-start;
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 2px;
    }
    .dashboard-v2 .detail-actions .action-button { flex: 0 0 auto; min-width: 64px; }
    .dashboard-v2 .grid-price-chart-legend { font-size: 10px; }
    .dashboard-v2 .grid-price-canvas-wrap { height: 200px; padding-inline: 4px; }
}
