.card {
  margin-top: 16px;
}

.cardTitle {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary, #aaa);
  margin: 0 0 10px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.empty {
  color: var(--text-muted, #666);
  font-size: 13px;
  padding: 20px 0;
  text-align: center;
}

/* Summary Grid */
.summaryGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}

.summaryCard {
  background: var(--bg-secondary, #14141f);
  border: 1px solid var(--border, #1e1e2e);
  border-radius: 8px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.summaryLabel {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted, #888);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.summaryValue {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary, #e0e0e0);
}

.summarySub {
  font-size: 11px;
  color: var(--text-muted, #888);
}

/* 7-Day Chart */
.chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 100px;
  padding: 0 4px;
}

.chartBar {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  justify-content: flex-end;
  gap: 4px;
}

.chartFill {
  width: 100%;
  min-height: 2px;
  background: linear-gradient(180deg, #00c864 0%, rgba(0, 200, 100, 0.3) 100%);
  border-radius: 3px 3px 0 0;
  transition: height 0.3s ease;
}

.chartLabel {
  font-size: 10px;
  color: var(--text-muted, #888);
  text-transform: uppercase;
}

/* Top Lists */
.topList {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.topRow {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
  font-size: 12px;
}

.topKey {
  flex: 1;
  color: var(--text-primary, #e0e0e0);
  font-family: 'SF Mono', monospace;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.topVal {
  color: var(--text-muted, #888);
  min-width: 80px;
  text-align: right;
}

.topReq {
  color: var(--text-muted, #666);
  min-width: 50px;
  text-align: right;
  font-size: 11px;
}
