.category-chart-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
  position: relative;
}

.category-chart {
  margin: 2rem 0 2rem 0;
  display: flex;
  align-items: flex-end;
  gap: 1.5rem;
  height: 300px;
}

.category-bar {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  justify-content: flex-end;
  max-width: 60px;
  min-width: 60px;
}

.category-bar-container {
  width: 100%;
  height: 100%;
  border: 1px solid black;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: white;
}

.category-bar-fill {
  width: 100%;
  border-top: 1px solid black;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 0.5rem;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 8px,
    #888 8px,
    #888 9px
  );
}

.category-count {
  font-size: 0.9rem;
  font-weight: 600;
  color: #333;
  background: white;
  padding: 2px 6px;
  border-radius: 2px;
}

.category-label {
  margin-top: 0.5rem;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 500;
}
