.donut {
  position: relative;
  width: auto;
  height: 320px;
}

.donut svg {
  transform: rotate(-90deg);
  width: 100%;
  height: 100%;
}

.donut circle {
  fill: none;
  stroke-width: 10;
}

.donut-bg {
  stroke: var(--color-border-primary);
}

.donut-progress {
  stroke: var(--color-surface-brand);
  stroke-linecap: round;
  transition: stroke-dasharray 600ms ease;
}

.donut-label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--color-text-primary)
}
