/* progress-circle.css */
.progress-circle {
  width: 120px;
  height: 120px;
  background: conic-gradient(#1F4E8C calc(var(--progress) * 1%), #e0e0e0 0%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: sans-serif;
  font-weight: bold;
  color: #1F4E8C;
  position: relative;
}

.progress-circle::before {
  content: attr(data-label);
  position: absolute;
  font-size: 1rem;
}
