/**
 * HYDRA ADMIN — mobile dashboard layout (≤767px only).
 * Scoped: body.use-new-ui.route-dashboard .mobile-dashboard
 * Desktop dashboard untouched.
 */

@media (max-width: 900px) {
  body.use-new-ui.route-dashboard {
    --mobile-dash-below-header: var(--hydra-mobile-below-header, var(--hydra-mobile-top-gap, 16px));
    overflow-x: hidden;
  }

  body.use-new-ui.route-dashboard #app,
  body.use-new-ui.route-dashboard .dashboard-layout,
  body.use-new-ui.route-dashboard .mobile-dashboard,
  body.use-new-ui.route-dashboard .dashboard-premium-wrap {
    overflow-x: hidden;
    max-width: 100%;
    min-width: 0;
  }

  /* Kill legacy style.css .content-scroll { margin-top: 70px } double spacing */
  body.use-new-ui.route-dashboard #contentScroll.content-scroll,
  body.use-new-ui.route-dashboard .content-scroll {
    margin-top: 0 !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    padding-inline: max(var(--hydra-mobile-page-x, var(--mo-pad-x)), env(safe-area-inset-left, 0px)) max(var(--hydra-mobile-page-x, var(--mo-pad-x)), env(safe-area-inset-right, 0px)) !important;
    padding-top: calc(var(--mobile-topbar-stack-h) + var(--hydra-mobile-below-header, var(--hydra-mobile-top-gap, 16px))) !important;
    overflow-x: clip;
  }

  body.use-new-ui.route-dashboard .app-content-shell,
  body.use-new-ui.route-dashboard .page-shell.app-content-shell {
    margin: 0 !important;
    padding: 0 !important;
  }

  body.use-new-ui.route-dashboard .page-content {
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  body.use-new-ui.route-dashboard .route-page.dashboard-layout {
    margin: 0 !important;
    padding: 0 !important;
  }

  body.use-new-ui.route-dashboard .dashboard-layout .content-container,
  body.use-new-ui.route-dashboard #appContent {
    padding-inline: 0 !important;
    margin: 0 !important;
  }

  body.use-new-ui.route-dashboard .mobile-dashboard,
  body.use-new-ui.route-dashboard .mobile-dashboard--native {
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
    padding: 0 !important;
    padding-bottom: 0 !important;
    margin: 0 !important;
  }

  /* —— Section titles —— */
  body.use-new-ui.route-dashboard .mobile-dash-section-title {
    margin: 0 0 6px !important;
    font-size: 20px !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    letter-spacing: -0.02em !important;
    color: #0f172a !important;
  }

  body.use-new-ui.route-dashboard .topbar-route-subtitle {
    font-size: 13px !important;
    font-weight: 500 !important;
    color: #64748b !important;
  }

  body.use-new-ui.route-dashboard .page-title-text {
    font-size: 24px !important;
    font-weight: 800 !important;
    line-height: 1.15 !important;
  }

  /* —— Period filter —— */
  body.use-new-ui.route-dashboard .dashboard-filter-shell {
    max-width: 100%;
    overflow: hidden;
    min-width: 0;
  }

  body.use-new-ui.route-dashboard .mobile-dash-period-wrap {
    order: 0 !important;
    position: static;
    z-index: 1;
    margin-top: 8px !important;
    margin-bottom: 0 !important;
    margin-inline: 0 !important;
    padding: 0 !important;
    background: transparent;
    max-width: 100%;
    overflow: hidden;
    min-width: 0;
  }

  body.use-new-ui.route-dashboard .mobile-dash-period-filter {
    display: flex;
    flex-direction: column;
    gap: 6px;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
  }

  body.use-new-ui.route-dashboard .dashboard-filter-tabs,
  body.use-new-ui.route-dashboard .mobile-dash-period-scroll.dashboard-filter-tabs {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    max-width: 100%;
    min-width: 0;
    padding: 2px 0 0;
    margin-bottom: 0;
    white-space: nowrap;
  }

  body.use-new-ui.route-dashboard .dashboard-filter-tabs::-webkit-scrollbar,
  body.use-new-ui.route-dashboard .mobile-dash-period-scroll::-webkit-scrollbar {
    display: none;
  }

  body.use-new-ui.route-dashboard .dashboard-month-tabs,
  body.use-new-ui.route-dashboard .mobile-dash-month-row.dashboard-month-tabs {
    display: flex;
    flex-wrap: nowrap;
    gap: 6px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    max-width: 100%;
    min-width: 0;
    padding: 2px 0;
  }

  body.use-new-ui.route-dashboard .dashboard-month-tabs::-webkit-scrollbar,
  body.use-new-ui.route-dashboard .mobile-dash-month-row::-webkit-scrollbar {
    display: none;
  }

  body.use-new-ui.route-dashboard .mobile-dash-period-scroll {
    display: flex;
    flex-wrap: nowrap;
    gap: 6px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 2px 0;
    max-width: 100%;
    min-width: 0;
  }

  body.use-new-ui.route-dashboard .mobile-dash-period-scroll::-webkit-scrollbar {
    display: none;
  }

  body.use-new-ui.route-dashboard .mobile-dash-period-btn {
    flex: 0 0 auto;
    height: 40px;
    padding: 0 14px;
    border: none;
    border-radius: 999px;
    background: #e2e8f0;
    color: #334155;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
  }

  body.use-new-ui.route-dashboard .mobile-dash-period-btn.is-active {
    background: var(--hydra-orange-500, #f97316);
    color: #fff;
    box-shadow: 0 2px 8px rgba(249, 115, 22, 0.35);
  }

  body.use-new-ui.route-dashboard .mobile-dash-month-row {
    display: none !important;
  }

  body.use-new-ui.route-dashboard .mobile-dash-month-context {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0;
    width: 100%;
    min-width: 0;
    padding: 2px 0 0;
  }

  body.use-new-ui.route-dashboard .mobile-dash-month-context__line {
    display: flex;
    flex: 1 1 auto;
    align-items: center;
    gap: 8px;
    min-width: 0;
  }

  body.use-new-ui.route-dashboard .mobile-dash-month-context__title {
    font-size: 14px;
    font-weight: 800;
    color: var(--hydra-text, #0f172a);
    line-height: 1.2;
    white-space: nowrap;
  }

  body.use-new-ui.route-dashboard .mobile-dash-kpi-period-label {
    margin: 0 0 7px;
    padding: 0;
    font-size: 13px;
    font-weight: 500;
    color: #6b7280;
    line-height: 1.25;
    white-space: nowrap;
  }

  body.use-new-ui.route-dashboard .mobile-dash-month-badge {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    min-height: 22px;
    padding: 2px 8px;
    border-radius: 999px;
    border: 1px solid var(--hydra-border-soft, #e2e8f0);
    background: #fff;
    font-size: 10px;
    font-weight: 700;
    color: var(--hydra-text-muted, #64748b);
    line-height: 1.2;
    white-space: nowrap;
  }

  body.use-new-ui.route-dashboard .mobile-dash-month-badge--current {
    border-color: rgba(249, 115, 22, 0.35);
    background: rgba(255, 237, 213, 0.85);
    color: var(--hydra-orange-800, #9a3412);
  }

  body.use-new-ui.route-dashboard .mobile-dash-month-filter-btn {
    flex: 0 0 auto;
    min-height: 25px;
    padding: 0 9px;
    border: 1px solid var(--hydra-border-soft, #e2e8f0);
    border-radius: 999px;
    background: #fff;
    font-size: 11px;
    font-weight: 700;
    color: var(--hydra-text-secondary, #475569);
    line-height: 1;
    cursor: pointer;
    white-space: nowrap;
  }

  body.use-new-ui.route-dashboard .mobile-dash-title-row {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 8px;
    width: 100%;
    min-width: 0;
    margin: 0;
  }

  body.use-new-ui.route-dashboard .mobile-dash-title-row .mobile-dash-section-title {
    flex: 1 1 auto;
    min-width: 0;
    margin: 0 !important;
    font-size: 18px !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  body.use-new-ui.route-dashboard .mobile-dash-title-row__actions {
    flex: 0 0 auto;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 6px;
    margin-left: auto;
    min-width: 0;
  }

  body.use-new-ui.route-dashboard #mobileDashTitleBlock > .mobile-dash-month-filter-panel {
    margin: 0 0 6px;
  }

  @media (max-width: 390px) {
    body.use-new-ui.route-dashboard .mobile-dash-title-row {
      gap: 6px;
    }

    body.use-new-ui.route-dashboard .mobile-dash-title-row__actions {
      gap: 5px;
    }

    body.use-new-ui.route-dashboard .mobile-dash-kpi-period-label {
      font-size: 12px;
      margin-bottom: 6px;
    }

    body.use-new-ui.route-dashboard .mobile-dash-month-badge {
      padding: 2px 6px;
      min-height: 20px;
      font-size: 10px;
    }

    body.use-new-ui.route-dashboard .mobile-dash-month-filter-btn {
      padding: 0 7px;
      min-height: 23px;
      font-size: 10px;
    }
  }

  body.use-new-ui.route-dashboard .mobile-dash-month-filter-panel {
    width: 100%;
    padding: 8px 10px;
    border-radius: 14px;
    border: 1px solid var(--hydra-border-soft, #e2e8f0);
    background: #fff;
    box-shadow: var(--hydra-shadow, 0 2px 8px rgba(15, 23, 42, 0.06));
    box-sizing: border-box;
  }

  body.use-new-ui.route-dashboard .mobile-dash-month-filter-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
    margin-bottom: 8px;
  }

  body.use-new-ui.route-dashboard .mobile-dash-month-filter-item {
    min-height: 32px;
    padding: 0 6px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #f8fafc;
    font-size: 11px;
    font-weight: 700;
    color: #475569;
    line-height: 1;
    cursor: pointer;
  }

  body.use-new-ui.route-dashboard .mobile-dash-month-filter-item.is-active {
    border-color: rgba(249, 115, 22, 0.45);
    background: rgba(255, 237, 213, 0.9);
    color: #9a3412;
  }

  body.use-new-ui.route-dashboard .mobile-dash-month-year-field {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
  }

  body.use-new-ui.route-dashboard .mobile-dash-month-year-select {
    flex: 1 1 auto;
    min-height: 34px;
    padding: 0 8px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    background: #fff;
  }

  body.use-new-ui.route-dashboard .mobile-dash-month-chip {
    flex: 0 0 auto;
    min-width: 40px;
    height: 32px;
    padding: 0 10px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    background: #fff;
    color: #475569;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
  }

  body.use-new-ui.route-dashboard .mobile-dash-month-chip.is-active {
    border-color: var(--hydra-orange-500, #f97316);
    background: var(--hydra-orange-accent-softer, #ffedd5);
    color: var(--hydra-orange-700, #c2410c);
  }

  body.use-new-ui.route-dashboard .dashboard-range-row--mobile.dashboard-custom-range {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-top: 2px;
    padding: 12px;
    border-radius: 14px;
    border: 1px solid rgba(203, 213, 225, 0.9);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  body.use-new-ui.route-dashboard .dashboard-range-row--mobile .dashboard-range-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
    width: 100%;
  }

  body.use-new-ui.route-dashboard .dashboard-range-row--mobile .dashboard-range-label {
    font-size: 12px;
    font-weight: 650;
    color: #64748b;
  }

  body.use-new-ui.route-dashboard .dashboard-range-row--mobile .dashboard-date-input {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    min-height: 40px;
    padding: 6px 10px;
    border-radius: 10px;
    border: 1px solid #cbd5e1;
    background: #fff;
    color: #0f172a;
    font-size: 14px;
    font-weight: 600;
    box-sizing: border-box;
  }

  body.use-new-ui.route-dashboard .dashboard-range-row--mobile .dashboard-range-summary {
    font-size: 13px;
    font-weight: 700;
    color: #0f172a;
    text-align: center;
    font-variant-numeric: tabular-nums;
  }

  body.use-new-ui.route-dashboard .dashboard-range-row--mobile .dashboard-range-summary--empty {
    color: #64748b;
    font-weight: 600;
  }

  body.use-new-ui.route-dashboard .dashboard-range-row--mobile .dashboard-range-actions {
    display: flex;
    gap: 8px;
    width: 100%;
  }

  body.use-new-ui.route-dashboard .dashboard-range-row--mobile .dashboard-range-actions .btn {
    flex: 1 1 0;
    min-height: 40px;
  }

  /* —— Flex order: filter → KPI → Asset growth → Tồn kho → Giữ hàng —— */
  body.use-new-ui.route-dashboard .mobile-dashboard .mobile-dash-today {
    order: 1 !important;
  }

  body.use-new-ui.route-dashboard .mobile-dashboard #hydraDashMonthlyTrends {
    order: 2 !important;
  }

  body.use-new-ui.route-dashboard .mobile-dashboard .dashboard-overview-compact-wrap {
    order: 3 !important;
    margin: 0 !important;
  }

  body.use-new-ui.route-dashboard .mobile-dashboard #hydraCrmDashboardRow,
  body.use-new-ui.route-dashboard .mobile-dashboard .hydra-crm-dashboard-row {
    order: 4 !important;
  }

  body.use-new-ui.route-dashboard .mobile-dashboard .dashboard-health,
  body.use-new-ui.route-dashboard .mobile-dashboard .mobile-action-summary {
    display: none !important;
  }

  body.use-new-ui.route-dashboard .mobile-dashboard #hydraDashTopStockMobile,
  body.use-new-ui.route-dashboard .mobile-dashboard .mobile-dash-stock-card {
    order: 3 !important;
    margin: 0 !important;
  }

  body.use-new-ui.route-dashboard .mobile-dashboard #hydraDashReservationsWrap {
    order: 4 !important;
  }

  body.use-new-ui.route-dashboard .mobile-dashboard #hydraDashReservationsWrap:empty {
    display: none !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  body.use-new-ui.route-dashboard .mobile-dashboard {
    --dash-mo-metric-size: clamp(20px, 5.2vw, 22px);
    --dash-mo-metric-lh: 1.12;
    --dash-mo-metric-min-h: calc(var(--dash-mo-metric-size) * var(--dash-mo-metric-lh));
    --dash-mo-label-size: 12px;
  }

  body.use-new-ui.route-dashboard .mobile-dashboard #hydraCrmDashboardRow,
  body.use-new-ui.route-dashboard .mobile-dashboard .hydra-crm-dashboard-row {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: none !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    gap: var(--hydra-mo-card-gap, 14px) !important;
    align-items: stretch !important;
    margin: 0 !important;
  }

  body.use-new-ui.route-dashboard .mobile-dashboard #hydraDashStorefrontCrmWrap,
  body.use-new-ui.route-dashboard .mobile-dashboard #hydraDashStorefrontInq {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    flex: 1 1 auto !important;
    box-sizing: border-box !important;
  }

  body.use-new-ui.route-dashboard .mobile-dashboard #hydraDashStorefrontCrmWrap {
    order: 1 !important;
  }

  body.use-new-ui.route-dashboard .mobile-dashboard #hydraDashStorefrontInq {
    order: 2 !important;
  }

  body.use-new-ui.route-dashboard .mobile-crm-card.hydra-dash-crm-kpis,
  body.use-new-ui.route-dashboard .mobile-crm-card.panel {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    align-self: stretch !important;
    box-sizing: border-box !important;
  }

  body.use-new-ui.route-dashboard .mobile-dashboard .owner-insight-row,
  body.use-new-ui.route-dashboard .mobile-dashboard .dashboard-hero,
  body.use-new-ui.route-dashboard .mobile-dashboard .dashboard-toolbar-premium,
  body.use-new-ui.route-dashboard .mobile-dashboard .dashboard-lower-grid,
  body.use-new-ui.route-dashboard .mobile-dashboard .dashboard-source-panel,
  body.use-new-ui.route-dashboard .mobile-dashboard #hydraDashTopProducts,
  body.use-new-ui.route-dashboard .mobile-dashboard #hydraDashProfitPanels,
  body.use-new-ui.route-dashboard .mobile-dashboard .hydra-ops-dash-card,
  body.use-new-ui.route-dashboard .mobile-dashboard .dashboard-overview-compact-wrap,
  body.use-new-ui.route-dashboard .mobile-dashboard #hydraDailyReviewInner,
  body.use-new-ui.route-dashboard .mobile-dashboard #hydraCrmDashboardRow,
  body.use-new-ui.route-dashboard .mobile-dashboard .hydra-crm-dashboard-row,
  body.use-new-ui.route-dashboard .mobile-dashboard #hydraDashStorefrontCrmWrap,
  body.use-new-ui.route-dashboard .mobile-dashboard #hydraDashStorefrontInq {
    display: none !important;
  }

  /* —— KPI grid 2×2 (Doanh thu/Lợi nhuận · Đơn/SP tồn) —— */
  body.use-new-ui.route-dashboard .mobile-dash-today {
    margin-bottom: 0 !important;
  }

  body.use-new-ui.route-dashboard .mobile-dash-today > .mobile-dash-section-title,
  body.use-new-ui.route-dashboard .mobile-dash-today > .mobile-dash-title-row .mobile-dash-section-title {
    margin-bottom: 2px !important;
    font-size: 18px !important;
  }

  body.use-new-ui.route-dashboard .mobile-kpi-grid.mobile-kpi-grid--dash-2x2,
  body.use-new-ui.route-dashboard #hydraDashKpiMobile.mobile-kpi-grid--dash-2x2 {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
    margin: 0 !important;
  }

  body.use-new-ui.route-dashboard .mobile-kpi-grid--dash-2x2 .mobile-kpi-card {
    min-height: 92px !important;
    padding: 10px 12px !important;
    min-width: 0 !important;
  }

  body.use-new-ui.route-dashboard .mobile-kpi-grid--dash-2x2 .mobile-kpi-label {
    font-size: 10px !important;
  }

  body.use-new-ui.route-dashboard .mobile-kpi-grid--dash-2x2 .mobile-kpi-value,
  body.use-new-ui.route-dashboard .mobile-kpi-grid--dash-2x2 .mobile-kpi-value.card-value,
  body.use-new-ui.route-dashboard .mobile-kpi-grid--dash-2x2 .mobile-kpi-value .kpi-anim-inner {
    font-size: clamp(20px, 5vw, 26px) !important;
    font-weight: 800 !important;
    white-space: nowrap !important;
    overflow: visible !important;
    text-overflow: clip !important;
    letter-spacing: -0.4px !important;
    max-width: none !important;
  }

  body.use-new-ui.route-dashboard .mobile-kpi-grid--dash-2x2 .mobile-kpi-value .hydra-currency-unit {
    font-size: 0.52em !important;
    letter-spacing: 0 !important;
  }

  /* —— Tồn kho: top SKU theo số lượng —— */
  body.use-new-ui.route-dashboard .mobile-dash-stock-card {
    width: 100% !important;
    max-width: none !important;
    padding: 12px 14px !important;
    border-radius: 20px !important;
    margin: 0 !important;
    border: 1px solid rgba(249, 115, 22, 0.18) !important;
    background: #fff !important;
    box-shadow: var(--hydra-shadow) !important;
    box-sizing: border-box !important;
  }

  body.use-new-ui.route-dashboard .mobile-dash-stock-head {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 10px !important;
    margin: 0 0 10px !important;
    min-width: 0 !important;
  }

  body.use-new-ui.route-dashboard .mobile-dash-stock-head .mobile-dash-section-title {
    margin: 0 !important;
    font-size: 17px !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    flex: 1 1 auto !important;
    min-width: 0 !important;
  }

  body.use-new-ui.route-dashboard .mobile-dash-stock-link {
    flex: 0 0 auto !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    min-height: 0 !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    color: #f97316 !important;
    line-height: 1.2 !important;
    white-space: nowrap !important;
    cursor: pointer !important;
  }

  body.use-new-ui.route-dashboard .mobile-dash-stock-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    margin: 0 !important;
  }

  body.use-new-ui.route-dashboard .mobile-dash-stock-row {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    min-width: 0 !important;
    padding: 10px 12px !important;
    border: 1px solid rgba(249, 115, 22, 0.14) !important;
    border-radius: 12px !important;
    background: #fff !important;
    box-sizing: border-box !important;
  }

  body.use-new-ui.route-dashboard .mobile-dash-stock-row-badge {
    flex: 0 0 40px !important;
    width: 40px !important;
    height: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 10px !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    letter-spacing: 0.02em !important;
    color: #f97316 !important;
    background: #fff3e8 !important;
  }

  body.use-new-ui.route-dashboard .mobile-dash-stock-row-body {
    flex: 1 1 auto !important;
    min-width: 0 !important;
  }

  body.use-new-ui.route-dashboard .mobile-dash-stock-row-name {
    display: block !important;
    font-size: 15px !important;
    font-weight: 800 !important;
    color: var(--hydra-text, #0f172a) !important;
    line-height: 1.25 !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }

  body.use-new-ui.route-dashboard .mobile-dash-stock-empty {
    margin: 0 !important;
    padding: 8px 2px 4px !important;
    font-size: 14px !important;
    line-height: 1.35 !important;
  }

  body.use-new-ui.route-dashboard .mobile-dash-stock-row-qty {
    flex: 0 0 auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-end !important;
    gap: 2px !important;
    min-width: 0 !important;
  }

  body.use-new-ui.route-dashboard .mobile-dash-stock-row-num {
    margin: 0 !important;
    font-size: clamp(22px, 5.4vw, 24px) !important;
    font-weight: 800 !important;
    font-variant-numeric: tabular-nums !important;
    color: #ea580c !important;
    line-height: 1 !important;
    letter-spacing: -0.03em !important;
  }

  body.use-new-ui.route-dashboard .mobile-dash-stock-row-unit {
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 0.04em !important;
    text-transform: uppercase !important;
    color: var(--hydra-text-muted, #64748b) !important;
    line-height: 1 !important;
  }

  /* KPI Tổng quan — .mobile-kpi-card system (hydra-mobile-polish-final.css) */

  body.use-new-ui.route-dashboard .mobile-dash-metric-label,
  body.use-new-ui.route-dashboard .dashboard-overview-strip-label,
  body.use-new-ui.route-dashboard .hydra-crm-kpi-lab {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    font-size: var(--dash-mo-label-size) !important;
    font-weight: 700 !important;
    letter-spacing: 0.06em !important;
    text-transform: uppercase !important;
    line-height: 1.2 !important;
    color: var(--hydra-text-muted, #64748b) !important;
  }

  body.use-new-ui.route-dashboard .mobile-dash-metric-value,
  body.use-new-ui.route-dashboard .dashboard-overview-strip-value,
  body.use-new-ui.route-dashboard .hydra-crm-kpi-val,
  body.use-new-ui.route-dashboard .hydra-crm-top-qty {
    margin: 0 !important;
    padding: 0 !important;
    font-size: var(--dash-mo-metric-size) !important;
    font-weight: 800 !important;
    line-height: var(--dash-mo-metric-lh) !important;
    letter-spacing: -0.03em !important;
    font-variant-numeric: tabular-nums !important;
    color: var(--hydra-text) !important;
  }

  body.use-new-ui.route-dashboard .dashboard-overview-strip-value,
  body.use-new-ui.route-dashboard .hydra-crm-kpi-val {
    min-height: var(--dash-mo-metric-min-h) !important;
    display: flex !important;
    align-items: flex-end !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }

  /* —— Việc cần xử lý — compact —— */
  body.use-new-ui.route-dashboard .mobile-action-summary {
    padding: 14px 16px !important;
    border-radius: 22px !important;
    margin: 0 !important;
  }

  body.use-new-ui.route-dashboard .mobile-action-summary .compact-list-head,
  body.use-new-ui.route-dashboard .mobile-action-summary .owner-warning-layout,
  body.use-new-ui.route-dashboard .mobile-action-summary .owner-health-box,
  body.use-new-ui.route-dashboard .mobile-action-summary .owner-warning-count {
    display: none !important;
  }

  body.use-new-ui.route-dashboard .mobile-action-summary.is-healthy {
    min-height: 0 !important;
    padding: 12px 16px !important;
  }

  body.use-new-ui.route-dashboard .mobile-compact-empty-line {
    margin: 0 !important;
    padding: 0 !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    line-height: 1.4 !important;
    color: #334155 !important;
  }

  body.use-new-ui.route-dashboard .mobile-action-summary.is-expanded .owner-warning-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    margin: 0 !important;
  }

  body.use-new-ui.route-dashboard .mobile-action-summary .owner-warning-item {
    min-height: 44px !important;
    padding: 10px 12px !important;
    border-radius: 12px !important;
    font-size: 14px !important;
    text-align: left !important;
  }

  body.use-new-ui.route-dashboard .mobile-action-badge {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 22px !important;
    height: 22px !important;
    padding: 0 6px !important;
    border-radius: 999px !important;
    background: #fef3c7 !important;
    color: #b45309 !important;
    font-size: 12px !important;
    font-weight: 800 !important;
  }

  body.use-new-ui.route-dashboard .mobile-dash-section-head {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 8px !important;
    margin-bottom: 10px !important;
  }

  body.use-new-ui.route-dashboard .mobile-dash-section-head .mobile-dash-section-title {
    margin: 0 !important;
  }

  /* —— Tháng này —— */
  body.use-new-ui.route-dashboard .mobile-month-summary.dashboard-overview-compact-wrap {
    margin: 0 !important;
  }

  body.use-new-ui.route-dashboard .mobile-month-summary .dashboard-overview-compact {
    padding: 14px 16px !important;
    border-radius: 22px !important;
    gap: 10px !important;
  }

  body.use-new-ui.route-dashboard .mobile-month-summary .dashboard-overview-compact-head {
    margin-bottom: 0 !important;
  }

  body.use-new-ui.route-dashboard .mobile-month-summary .dashboard-overview-compact-title {
    font-size: 20px !important;
    font-weight: 800 !important;
  }

  body.use-new-ui.route-dashboard .mobile-month-summary .dashboard-overview-compact-date {
    font-size: 12px !important;
  }

  body.use-new-ui.route-dashboard .mobile-month-summary .hydra-smart-insight-bar {
    display: none !important;
  }

  body.use-new-ui.route-dashboard .mobile-month-summary .dashboard-overview-strip {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
    overflow: visible !important;
    padding: 0 !important;
  }

  body.use-new-ui.route-dashboard .mobile-month-summary .dashboard-overview-strip-item {
    min-width: 0 !important;
    max-width: none !important;
    padding: 10px 12px !important;
    border-radius: 14px !important;
    background: rgba(248, 250, 252, 0.9) !important;
    border: 1px solid rgba(15, 23, 42, 0.06) !important;
  }

  body.use-new-ui.route-dashboard .mobile-month-summary .dashboard-overview-strip-item {
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
    min-height: 72px !important;
    justify-content: flex-start !important;
  }

  /* —— Đang giữ hàng —— */
  body.use-new-ui.route-dashboard .mobile-holds-card {
    padding: 14px 16px !important;
    border-radius: 22px !important;
    margin: 0 !important;
  }

  body.use-new-ui.route-dashboard .mobile-holds-card .compact-list-head,
  body.use-new-ui.route-dashboard .mobile-holds-card .hydra-inq-table-wrap {
    display: none !important;
  }

  body.use-new-ui.route-dashboard .mobile-holds-card.has-items .compact-list-head {
    display: flex !important;
    margin-bottom: 8px !important;
  }

  body.use-new-ui.route-dashboard .mobile-holds-card.has-items .compact-list-head h3 {
    font-size: 20px !important;
    margin: 0 !important;
  }

  body.use-new-ui.route-dashboard .mobile-holds-card.has-items .card-title {
    font-size: 11px !important;
  }

  body.use-new-ui.route-dashboard .mobile-holds-card.has-items .hydra-inq-table-wrap {
    display: block !important;
    max-height: 220px !important;
    overflow: auto !important;
  }

  body.use-new-ui.route-dashboard .mobile-holds-card.has-items .hydra-inq-table {
    font-size: 13px !important;
  }

  /* —— Storefront CRM —— */
  body.use-new-ui.route-dashboard .mobile-crm-card {
    padding: 18px 16px !important;
    border-radius: 24px !important;
    margin: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  body.use-new-ui.route-dashboard .mobile-crm-card .compact-list-head {
    margin-bottom: 12px !important;
  }

  body.use-new-ui.route-dashboard .mobile-crm-card .compact-list-head h3 {
    font-size: clamp(20px, 5.4vw, 24px) !important;
    font-weight: 800 !important;
    margin: 0 !important;
    line-height: 1.2 !important;
  }

  body.use-new-ui.route-dashboard .mobile-crm-card .hydra-crm-kpi-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
    width: 100% !important;
    margin: 0 0 14px !important;
  }

  body.use-new-ui.route-dashboard .mobile-crm-card .hydra-crm-kpi {
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
    min-width: 0 !important;
    min-height: 72px !important;
    padding: 12px 14px !important;
    border-radius: 16px !important;
    background: var(--hydra-bg-warm-soft) !important;
    border: 1px solid var(--hydra-border-soft) !important;
    box-sizing: border-box !important;
  }

  body.use-new-ui.route-dashboard .mobile-crm-card .hydra-crm-kpi-val {
    margin-top: auto !important;
  }

  body.use-new-ui.route-dashboard .mobile-crm-card .hydra-crm-top-block {
    width: 100% !important;
    border-top: 1px solid var(--hydra-border-soft) !important;
    padding-top: 12px !important;
    margin: 0 !important;
  }

  body.use-new-ui.route-dashboard .mobile-crm-card .hydra-crm-top-title {
    font-size: var(--dash-mo-label-size) !important;
    font-weight: 700 !important;
    letter-spacing: 0.06em !important;
    text-transform: uppercase !important;
    color: var(--hydra-text-muted) !important;
    margin: 0 0 8px !important;
    line-height: 1.2 !important;
  }

  body.use-new-ui.route-dashboard .mobile-crm-card .hydra-crm-top-list {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    gap: 0 !important;
  }

  body.use-new-ui.route-dashboard .mobile-crm-card .hydra-crm-top-row {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;
    min-height: 44px !important;
    padding: 10px 0 !important;
    margin: 0 !important;
    border-bottom: 1px solid var(--hydra-border-soft) !important;
    font-size: inherit !important;
  }

  body.use-new-ui.route-dashboard .mobile-crm-card .hydra-crm-top-row:last-child {
    border-bottom: none !important;
    padding-bottom: 0 !important;
  }

  body.use-new-ui.route-dashboard .mobile-crm-card .hydra-crm-top-name {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    line-height: 1.35 !important;
    color: var(--hydra-text) !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }

  body.use-new-ui.route-dashboard .mobile-crm-card .hydra-crm-top-qty {
    flex: 0 0 auto !important;
    text-align: right !important;
  }

  body.use-new-ui.route-dashboard .mobile-crm-card .hydra-crm-top-empty {
    font-size: 14px !important;
    line-height: 1.4 !important;
    padding: 8px 0 !important;
  }

  /* —— Yêu cầu cửa hàng — compact —— */
  body.use-new-ui.route-dashboard .mobile-inq-card {
    padding: 14px 16px !important;
    border-radius: 22px !important;
    margin: 0 !important;
  }

  body.use-new-ui.route-dashboard .mobile-inq-card .hydra-inq-lead-hint {
    display: none !important;
  }

  body.use-new-ui.route-dashboard .mobile-inq-card .compact-list-head h3 {
    font-size: 20px !important;
    margin: 0 !important;
  }

  body.use-new-ui.route-dashboard .mobile-inq-card.is-empty .hydra-inq-panel-links {
    margin-top: 10px !important;
  }

  body.use-new-ui.route-dashboard .mobile-inq-card.is-empty .hydra-inq-summary-grid,
  body.use-new-ui.route-dashboard .mobile-inq-card.is-empty .empty-state {
    display: none !important;
  }

  body.use-new-ui.route-dashboard .mobile-inq-card.is-empty .mobile-compact-empty-line {
    margin: 8px 0 0 !important;
  }

  body.use-new-ui.route-dashboard .mobile-inq-card:not(.is-empty) .mobile-compact-empty-line {
    display: none !important;
  }

  body.use-new-ui.route-dashboard .mobile-inq-card .hydra-inq-panel-links {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    margin-top: 10px !important;
  }

  body.use-new-ui.route-dashboard .mobile-inq-card .hydra-inq-panel-links .btn {
    min-height: 40px !important;
    font-size: 13px !important;
  }

  /* —— FAB: dashboard quick actions (primary grid only) —— */
  body.use-new-ui.route-dashboard .mobile-owner-action-sheet__item:not(.mobile-owner-action-sheet__item--dash-primary) {
    display: none !important;
  }

  body.use-new-ui.route-dashboard .mobile-owner-action-sheet__panel {
    max-height: min(72dvh, 620px) !important;
  }

  body.use-new-ui.route-dashboard .mobile-owner-action-sheet__list {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
    padding: 10px 12px calc(20px + env(safe-area-inset-bottom, 0px)) !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    box-sizing: border-box !important;
    overscroll-behavior: contain !important;
  }

  body.use-new-ui.route-dashboard .mobile-owner-action-sheet__item--dash-primary {
    display: flex !important;
    min-width: 0 !important;
    min-height: 64px !important;
    padding: 10px 12px !important;
    box-sizing: border-box !important;
  }

  body.use-new-ui.route-dashboard .mobile-owner-action-sheet__item--dash-primary .mobile-owner-action-sheet__txt {
    min-width: 0 !important;
  }

  body.use-new-ui.route-dashboard .mobile-owner-action-sheet__item--dash-primary .mobile-owner-action-sheet__txt strong,
  body.use-new-ui.route-dashboard .mobile-owner-action-sheet__item--dash-primary .mobile-owner-action-sheet__txt small {
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }

  body.use-new-ui.route-dashboard[data-owner-fab-route="dashboard"] {
    --mobile-fab-extra-pad: 0px;
  }

  body.use-new-ui.route-dashboard #contentScroll.content-scroll,
  body.use-new-ui.route-dashboard .content-scroll {
    padding-bottom: var(--mobile-scroll-bottom-clearance-fab, var(--app-scroll-bottom-pad-fab, var(--hydra-mo-scroll-bottom-pad-fab))) !important;
  }

  body.use-new-ui.route-dashboard .mobile-dash-metric-value .hydra-currency-unit,
  body.use-new-ui.route-dashboard .mobile-kpi-value .hydra-currency-unit {
    font-size: 0.58em;
    font-weight: 700;
    margin-left: 1px;
    opacity: 0.88;
    vertical-align: baseline;
    line-height: 1;
  }

  @media (max-width: 360px) {
    body.use-new-ui.route-dashboard .mobile-kpi-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
  }

  /* TASK-711 — Monthly revenue / profit trends under KPIs */
  body.use-new-ui.route-dashboard #hydraDashMonthlyTrends {
    min-width: 0;
    margin: 0 0 12px;
  }

  body.use-new-ui.route-dashboard .dash-month-trends__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    margin: 0 0 10px;
    min-width: 0;
  }

  body.use-new-ui.route-dashboard .dash-month-trends__title {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
  }

  body.use-new-ui.route-dashboard .dash-month-trends__sub {
    margin: 2px 0 0;
    font-size: 11px;
    color: #64748b;
  }

  body.use-new-ui.route-dashboard .dash-month-trends__span {
    display: flex;
    gap: 4px;
    flex: 0 0 auto;
  }

  body.use-new-ui.route-dashboard .dash-month-trends__span-btn {
    border: 1px solid #e2e8f0;
    background: #fff;
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 11px;
    font-weight: 600;
    color: #64748b;
  }

  body.use-new-ui.route-dashboard .dash-month-trends__span-btn.is-on {
    background: #fff7ed;
    border-color: #fdba74;
    color: #c2410c;
  }

  body.use-new-ui.route-dashboard .dash-month-trends__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
  }

  body.use-new-ui.route-dashboard .dash-month-card {
    margin: 0 !important;
    padding: 12px !important;
    border-radius: 16px !important;
    background: #fff !important;
    box-shadow: 0 1px 4px rgba(15, 23, 42, 0.04) !important;
    min-width: 0;
    overflow: visible !important;
    position: relative;
  }

  body.use-new-ui.route-dashboard .dash-month-card__title {
    margin: 0;
    font-size: 13px;
    font-weight: 700;
    color: #0f172a;
  }

  body.use-new-ui.route-dashboard .dash-month-card__value {
    display: block;
    margin-top: 4px;
    font-size: 18px;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    color: #0f172a;
  }

  body.use-new-ui.route-dashboard .dash-month-card--revenue .dash-month-card__value { color: #ea580c; }
  body.use-new-ui.route-dashboard .dash-month-card--profit .dash-month-card__value { color: #059669; }

  body.use-new-ui.route-dashboard .dash-month-card__cmp {
    margin: 4px 0 8px;
    font-size: 11px;
    color: #64748b;
  }

  body.use-new-ui.route-dashboard .dash-month-card__delta.is-up { color: #059669; font-weight: 700; }
  body.use-new-ui.route-dashboard .dash-month-card__delta.is-down { color: #dc2626; font-weight: 700; }
  body.use-new-ui.route-dashboard .dash-month-card__delta.is-flat { color: #64748b; font-weight: 700; }

  body.use-new-ui.route-dashboard .dash-month-chart {
    position: relative;
    overflow: visible;
    min-width: 0;
  }

  body.use-new-ui.route-dashboard .dash-month-chart__svg {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 640 / 200;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
    border-radius: 10px;
    border: 1px solid #eef2f6;
    overflow: visible;
    touch-action: manipulation;
  }

  body.use-new-ui.route-dashboard .dash-month-chart__bar { fill: #fb923c; }
  body.use-new-ui.route-dashboard .dash-month-card--profit .dash-month-chart__bar { fill: #34d399; }
  body.use-new-ui.route-dashboard .dash-month-chart__bar.is-neg { fill: #f87171; }
  body.use-new-ui.route-dashboard .dash-month-chart__axis {
    pointer-events: none;
  }
  body.use-new-ui.route-dashboard .dash-month-chart__axis text { fill: #94a3b8; font-size: 10px; }
  body.use-new-ui.route-dashboard .dash-month-chart__zero { stroke: #cbd5e1; stroke-width: 1; }
  body.use-new-ui.route-dashboard .dash-month-chart__hit {
    fill: transparent;
    cursor: pointer;
    outline: none;
  }
  body.use-new-ui.route-dashboard .dash-month-chart__hit.is-active {
    fill: rgba(15, 23, 42, 0.06);
  }
  body.use-new-ui.route-dashboard .dash-month-chart__hit:focus-visible {
    stroke: #0f172a;
    stroke-width: 1.5;
    stroke-opacity: 0.35;
  }
  body.use-new-ui.route-dashboard .dash-month-chart__tip {
    position: absolute;
    z-index: 40;
    display: block;
    width: max-content;
    min-width: 148px;
    max-width: min(240px, calc(100% - 8px));
    padding: 8px 10px;
    border-radius: 10px;
    background: #0f172a;
    color: #f8fafc;
    font-size: 11px;
    line-height: 1.35;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.22);
    pointer-events: none;
    font-variant-numeric: tabular-nums;
    box-sizing: border-box;
  }
  body.use-new-ui.route-dashboard .dash-month-chart__tip[hidden] {
    display: none !important;
  }
  body.use-new-ui.route-dashboard .dash-month-chart__tip-title {
    font-weight: 700;
    font-size: 12px;
    margin: 0 0 4px;
    color: #fff;
  }
  body.use-new-ui.route-dashboard .dash-month-chart__tip-line {
    color: #e2e8f0;
  }
  body.use-new-ui.route-dashboard .dash-month-chart__tip-cmp {
    margin-top: 4px;
    color: #cbd5e1;
  }
  body.use-new-ui.route-dashboard .dash-month-chart__tip-delta.is-up { color: #6ee7b7; font-weight: 700; }
  body.use-new-ui.route-dashboard .dash-month-chart__tip-delta.is-down { color: #fca5a5; font-weight: 700; }
  body.use-new-ui.route-dashboard .dash-month-chart__tip-delta.is-flat { color: #e2e8f0; font-weight: 700; }
  body.use-new-ui.route-dashboard .dash-month-chart__empty {
    padding: 16px 4px;
    text-align: center;
    font-size: 12px;
    color: #64748b;
  }

}

@media (min-width: 901px) {
  body.use-new-ui.route-dashboard #hydraDashMonthlyTrends {
    min-width: 0;
    margin: 0 0 14px;
  }

  body.use-new-ui.route-dashboard .dash-month-trends__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  body.use-new-ui.route-dashboard .dash-month-card {
    padding: 14px 16px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 1px 4px rgba(15, 23, 42, 0.04);
    min-height: 100%;
    overflow: visible;
    position: relative;
  }

  body.use-new-ui.route-dashboard .dash-month-card__value { font-size: 20px; }
  body.use-new-ui.route-dashboard .dash-month-chart__svg { max-width: 100%; }
}

/* TASK-731 — monthly chart tooltips / hits (mobile + desktop) */
body.use-new-ui.route-dashboard .dash-month-card {
  position: relative;
  overflow: visible;
}
body.use-new-ui.route-dashboard .dash-month-chart {
  position: relative;
  overflow: visible;
  min-width: 0;
}
body.use-new-ui.route-dashboard .dash-month-chart__svg {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 640 / 200;
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
  border-radius: 10px;
  border: 1px solid #eef2f6;
  overflow: visible;
  touch-action: manipulation;
}
body.use-new-ui.route-dashboard .dash-month-chart__bar { fill: #fb923c; }
body.use-new-ui.route-dashboard .dash-month-card--profit .dash-month-chart__bar { fill: #34d399; }
body.use-new-ui.route-dashboard .dash-month-chart__bar.is-neg { fill: #f87171; }
body.use-new-ui.route-dashboard .dash-month-chart__axis { pointer-events: none; }
body.use-new-ui.route-dashboard .dash-month-chart__axis text { fill: #94a3b8; font-size: 10px; }
body.use-new-ui.route-dashboard .dash-month-chart__zero { stroke: #cbd5e1; stroke-width: 1; }
body.use-new-ui.route-dashboard .dash-month-chart__hit {
  fill: transparent;
  cursor: pointer;
  outline: none;
}
body.use-new-ui.route-dashboard .dash-month-chart__hit.is-active {
  fill: rgba(15, 23, 42, 0.06);
}
body.use-new-ui.route-dashboard .dash-month-chart__hit:focus-visible {
  stroke: #0f172a;
  stroke-width: 1.5;
  stroke-opacity: 0.35;
}
body.use-new-ui.route-dashboard .dash-month-chart__tip {
  position: absolute;
  z-index: 40;
  display: block;
  width: max-content;
  min-width: 148px;
  max-width: min(240px, calc(100% - 8px));
  padding: 8px 10px;
  border-radius: 10px;
  background: #0f172a;
  color: #f8fafc;
  font-size: 11px;
  line-height: 1.35;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.22);
  pointer-events: none;
  font-variant-numeric: tabular-nums;
  box-sizing: border-box;
}
body.use-new-ui.route-dashboard .dash-month-chart__tip[hidden] {
  display: none !important;
}
body.use-new-ui.route-dashboard .dash-month-chart__tip-title {
  font-weight: 700;
  font-size: 12px;
  margin: 0 0 4px;
  color: #fff;
}
body.use-new-ui.route-dashboard .dash-month-chart__tip-line { color: #e2e8f0; }
body.use-new-ui.route-dashboard .dash-month-chart__tip-cmp {
  margin-top: 4px;
  color: #cbd5e1;
}
body.use-new-ui.route-dashboard .dash-month-chart__tip-delta.is-up { color: #6ee7b7; font-weight: 700; }
body.use-new-ui.route-dashboard .dash-month-chart__tip-delta.is-down { color: #fca5a5; font-weight: 700; }
body.use-new-ui.route-dashboard .dash-month-chart__tip-delta.is-flat { color: #e2e8f0; font-weight: 700; }
body.use-new-ui.route-dashboard .dash-month-chart__empty {
  padding: 16px 4px;
  text-align: center;
  font-size: 12px;
  color: #64748b;
}
