/* Dashboard-specific layout */
.exp-chart {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  padding: 0 4px;
  align-items: end;
}
.exp-col {
  display: flex; flex-direction: column;
  align-items: center; gap: 8px;
  padding: 8px 4px;
}
.exp-bar-wrap {
  position: relative; width: 100%;
  display: flex; flex-direction: column;
  justify-content: flex-end; align-items: center;
}
.exp-bar {
  width: 60%; min-width: 28px; max-width: 56px;
  display: flex; flex-direction: column-reverse;
  border-radius: 4px; overflow: hidden;
  transition: transform 0.1s ease;
}
.exp-col:hover .exp-bar { transform: scaleX(1.08); }
.exp-bar > div { width: 100%; }
.exp-bar-net {
  position: absolute; top: 0;
  font-size: 11px; color: var(--fg);
  font-variant-numeric: tabular-nums;
}
.exp-label {
  text-align: center;
  border-top: 1px solid var(--line-soft);
  padding-top: 8px; width: 100%;
}

.mini-tbl thead th { background: var(--bg-1); padding: 8px 12px; }
.mini-tbl tbody td { font-size: 12px; }

.fill-row {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--line-soft);
  font-size: 13px;
}
.fill-row:last-child { border-bottom: none; }
.fill-row:hover { background: var(--bg-2); }
.fill-row .fill-desc {
  flex: 1; overflow: hidden; text-overflow: ellipsis;
  font-size: 12px; color: var(--fg);
}
