.box {
  display: flex;
  width: fit-content;
  padding: 5px;
  border-radius: 8px;
  background: var(--bg-color, #fff) !important;
  gap: 16px;
  flex-direction: column;
  align-items: center;
  transition: background-color 0.3s ease;
}

.circular-progress {
  position: relative;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: conic-gradient(var(--color, #7d2ae8) 0deg, #ededed 0deg);
  transition: all 0.4s ease;
  box-shadow: 0 0 7px #aaa;
}

.circular-progress::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  background-color: #ffffffd1;
  width: var(--before-size, 120px);
  height: var(--before-size, 120px);
}

.circular-progress[data-style="shadow"] {
  box-shadow:
    0 8px 16px rgba(0,0,0,0.25),
    inset 0 2px 5px rgba(255,255,255,0.6);
}

.circular-progress[data-style="3d"] {
  box-shadow:
    inset 2px 3px 6px rgba(255,255,255,0.7),
    inset -3px -5px 8px rgba(0,0,0,0.2),
    0 8px 18px rgba(0,0,0,0.3);
  background: conic-gradient(var(--color, #7d2ae8) 0deg, #dcdcdc 0deg);
}

.progress-value {
  position: relative;
  font-weight: 600;
  text-align: center;
}

.progress-text {
  font-weight: 900;
  transition: all 0.3s ease;
}
