.chart-wrap {
  position: relative;
  height: 220px;
}

.cat-breakdown { margin-top: 1.2rem; }

.cat-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.6rem;
}

.cat-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.cat-bar-wrap { flex: 1; }

.cat-name {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 3px;
  display: flex;
  justify-content: space-between;
}

.cat-bar {
  height: 5px;
  background: var(--warm);
  border-radius: 3px;
  overflow: hidden;
}

.cat-bar-fill {
  height: 100%;
  border-radius: 3px;
  transition: width 0.6s ease;
}

.no-data-msg {
  color: var(--muted);
  font-size: 0.8rem;
  text-align: center;
}
