/* Container */
.ccr-panel {
  padding: 16px 18px;
  border-radius: 12px;
  display: block;
  width: 100%;
  box-sizing: border-box;
}

/* Flex layout that wraps on small screens */
.ccr-wrap {
  display: flex;
  flex-wrap: wrap!important; 
  align-items: center;
  justify-content: center;
  gap: 16px; 
  max-width: 100%;
}

/* Each ring */
.ccr-item {
  position: relative;
  display: inline-block;
  flex: 1 1 auto; /* allow shrinking and wrapping */
  display: flex;
  justify-content: center;
}

/* Centered text inside the ring */
.ccr-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  text-align: center;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue",
    Arial, "Noto Sans", "Liberation Sans", sans-serif;
}

/* Labels & values use fluid sizes so they shrink on mobile */
.ccr-label {
  font-size: clamp(9px, 2.2vw, 11px);
  letter-spacing: 1px;
  opacity: 0.9;
}

.ccr-value {
  font-weight: 800;
  font-size: clamp(18px, 6vw, 30px); /* fluid */
  line-height: 1.1;
  margin-top: 4px;
}


