#dashboardPage .cc-performance-panel { margin-top: 12px; }
    #dashboardPage .cc-performance-grid {
      display: grid;
      grid-template-columns: repeat(7, minmax(0, 1fr));
      gap: 8px;
    }
    #dashboardPage .cc-performance-metric {
      appearance: none;
      background: #fff;
      border: 1px solid #dbe3ec;
      border-radius: 10px;
      min-width: 0;
      padding: 12px 13px;
      text-align: left;
      color: #142033;
      cursor: pointer;
    }
    #dashboardPage .cc-performance-metric:hover { border-color: #9fb3c8; background: #f8fbff; }
    #dashboardPage .cc-performance-metric.is-active { border-color: #235fae; box-shadow: 0 0 0 2px rgba(35,95,174,.12); background: #f8fbff; }
    #dashboardPage .cc-performance-metric-head { display:flex; align-items:center; justify-content:space-between; gap:8px; }
    #dashboardPage .cc-performance-chevron { color:#728094; font-size:12px; line-height:1; transition:transform .18s ease; }
    #dashboardPage .cc-performance-metric.is-active .cc-performance-chevron { transform:rotate(180deg); }
    #dashboardPage .cc-performance-metric small {
      display: block;
      color: #5c6b7d;
      font-size: 10px;
      font-weight: 800;
      letter-spacing: .035em;
      text-transform: uppercase;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    #dashboardPage .cc-performance-metric b { display: block; margin-top: 5px; font-size: 24px; line-height: 1; }
    #dashboardPage .cc-performance-metric span { display: block; margin-top: 6px; color: #6a7889; font-size: 10px; line-height: 1.25; }
    #dashboardPage .cc-performance-metric[data-tone="green"] b { color: #158447; }
    #dashboardPage .cc-performance-metric[data-tone="orange"] b { color: #b76400; }
    #dashboardPage .cc-performance-metric[data-tone="purple"] b { color: #7042bd; }
    #dashboardPage .cc-performance-metric[data-tone="blue"] b { color: #235fae; }
    #dashboardPage .cc-performance-detail {
      display:none;
      margin-top:10px;
      border:1px solid #dbe3ec;
      border-radius:10px;
      background:#fff;
      overflow:hidden;
    }
    #dashboardPage .cc-performance-detail.is-open { display:block; animation:ccPerformanceOpen .18s ease; }
    #dashboardPage .cc-performance-detail-head { display:flex; align-items:flex-start; justify-content:space-between; gap:16px; padding:13px 15px; border-bottom:1px solid #e5eaf0; background:#f8fafc; }
    #dashboardPage .cc-performance-detail-head h3 { margin:0; font-size:14px; text-transform:uppercase; letter-spacing:.025em; }
    #dashboardPage .cc-performance-detail-head p { margin:4px 0 0; color:#667588; font-size:11px; }
    #dashboardPage .cc-performance-detail-close { border:0; background:transparent; color:#526174; cursor:pointer; font-size:20px; line-height:1; padding:2px 5px; }
    #dashboardPage .cc-performance-detail-body { padding:0 15px 14px; }
    #dashboardPage .cc-performance-smart-summary { padding:12px 0 10px; border-bottom:1px solid #e5eaf0; }
    #dashboardPage .cc-performance-summary-title { margin:0 0 8px; font-size:10px; font-weight:800; letter-spacing:.07em; text-transform:uppercase; color:#59687a; }
    #dashboardPage .cc-performance-summary-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:8px; }
    #dashboardPage .cc-performance-summary-stat { min-width:0; padding:9px 10px; border:1px solid #e1e7ee; border-radius:8px; background:#fff; }
    #dashboardPage .cc-performance-summary-stat span { display:block; color:#6b7888; font-size:9px; font-weight:700; letter-spacing:.035em; text-transform:uppercase; }
    #dashboardPage .cc-performance-summary-stat strong { display:block; margin-top:3px; color:#18324f; font-size:16px; line-height:1.15; }
    #dashboardPage .cc-performance-insights { display:grid; gap:6px; margin-top:9px; }
    #dashboardPage .cc-performance-insight { display:flex; align-items:flex-start; gap:7px; padding:7px 9px; border-radius:7px; font-size:11px; line-height:1.35; }
    #dashboardPage .cc-performance-insight.good { color:#17663a; background:#edf9f2; border:1px solid #ccebd9; }
    #dashboardPage .cc-performance-insight.warn { color:#8a5200; background:#fff7e8; border:1px solid #f3dfb4; }
    #dashboardPage .cc-performance-insight.danger { color:#9b2730; background:#fff0f1; border:1px solid #f1cbd0; }
    #dashboardPage .cc-performance-insight.neutral { color:#45566b; background:#f3f6f9; border:1px solid #dde4eb; }
    #dashboardPage .cc-performance-insight b { flex:0 0 auto; }
    #dashboardPage .cc-performance-summary { display:flex; gap:18px; flex-wrap:wrap; padding:12px 0; color:#526174; font-size:11px; }
    #dashboardPage .cc-performance-summary strong { color:#142033; }
    #dashboardPage .cc-performance-table { width:100%; border-collapse:collapse; font-size:11px; }
    #dashboardPage .cc-performance-table th { text-align:left; color:#5c6b7d; font-size:9px; letter-spacing:.035em; text-transform:uppercase; padding:8px 7px; border-bottom:1px solid #dfe6ee; }
    #dashboardPage .cc-performance-table td { padding:9px 7px; border-bottom:1px solid #edf1f5; vertical-align:top; }
    #dashboardPage .cc-performance-table tr:last-child td { border-bottom:0; }
    #dashboardPage .cc-performance-empty { padding:22px 4px 8px; color:#667588; text-align:center; }

    #dashboardPage .cc-performance-actions-bar { display:flex; justify-content:flex-end; gap:8px; flex-wrap:wrap; padding:10px 0; border-bottom:1px solid #e5eaf0; }
    #dashboardPage .cc-performance-action { border:1px solid #cbd7e4; background:#fff; color:#235fae; border-radius:7px; padding:6px 9px; font-size:10px; font-weight:800; cursor:pointer; white-space:nowrap; }
    #dashboardPage .cc-performance-action:hover { background:#f2f7fc; border-color:#9fb6cf; }
    #dashboardPage .cc-performance-action:disabled { opacity:.45; cursor:not-allowed; background:#f5f6f8; color:#778596; }
    #dashboardPage .cc-performance-row-actions { display:flex; gap:6px; flex-wrap:wrap; min-width:145px; }
    @keyframes ccPerformanceOpen { from { opacity:0; transform:translateY(-4px); } to { opacity:1; transform:translateY(0); } }
    @media (max-width: 1250px) { #dashboardPage .cc-performance-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
    @media (max-width: 760px) {
      #dashboardPage .cc-performance-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      #dashboardPage .cc-performance-detail { overflow-x:auto; }
      #dashboardPage .cc-performance-summary-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
      #dashboardPage .cc-performance-table { min-width:680px; }
    }
