#statsContent {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 100%;
  overflow-y: auto;
}

.stats-div {
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.stats-name {
  width: 150px;
  flex-shrink: 0;
  text-align: left;
}

.progressbar-container {
  flex: 1;
  background-color: rgb(220, 220, 220);
  border-radius: 10em;
  height: 14px;
  position: relative;
  overflow: hidden;
  align-items: center;
}

.progressbar {
  height: 100%;
  border-radius: 10em;
  background: linear-gradient(
    120deg, 
    #1672fc 25%,
    #013cc5 25%,
    #002e97 50%,
    #002e74 50%,
    #0250c6 75%,
    #2462f4 75%,
    #2c5ef6 100% 
  );
  background-size: 20px 20px;
  animation: progress-bar-stripes 2s linear infinite;
  transition: width 1s ease-in-out;
  position: absolute;
  left: 0;
  top: 0;
}

@keyframes progress-bar-stripes {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 20px 0;
  }
}

.progress-text {
  position: absolute;
  padding-left: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: white;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.7);
}