:host .progress-container {
  width: 100%;
  display: flex;
  background-color: var(--color-scorebar-bar-bg);
  border-radius: 8px;
  overflow: hidden;
  height: 8px;
}

.bar-segment {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tooltip {
  color: var(--color-scorebar-tooltip-title);
  background: var(--color-scorebar-tooltip-bg);
  border: 1px solid var(--color-scorebar-tooltip-border);
  padding: 5px 10px;
  position: fixed;
  z-index: 9999;
  border-radius: 10px;
  pointer-events: none;
  white-space: nowrap;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 5px;
}

.tooltip-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  display: flex;
  gap: 24px;
}

.label-area {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  gap: 7px;
}

.label-circle {
  width: 7px;
  height: 7px;
  border-radius: 10px;
}

.value-area {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  gap: 5px;
}

.value-percent {
  color: var(--color-scorebar-tooltip-sub);
}

.skeleton-loader {
  animation: shimmer 1.8s infinite linear;
  background: var(--color-scorebar--loading-animation);
  background-size: 1000px 100%;
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}