.pbe-progress-bar-wrap {
  margin: 20px 0;
  font-family: Arial, Helvetica, sans-serif;
  display: flex;
  align-items: center;
  gap: 12px;
  height: 30px;
}
.pbe-label {
  min-width: 90px;
  font-style: italic;
  color: #444;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 4px;
}
.pbe-info-icon {
  font-size: 14px;
  color: #d3d3d3;
  cursor: pointer;
}
.pbe-bar-bg {
  flex: 1 1 auto;
  background: #e8f8d8;
  border-radius: 16px;
  height: 24px;
  position: relative;
  overflow: hidden;
  min-width: 80px;
  margin: 0 8px;
}
.pbe-bar-fill {
  background: #b6ff4a;
  height: 100%;
  border-radius: 16px 16px 16px 16px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  transition: width 0.4s cubic-bezier(.4,2,.6,1);
  position: relative;
}
.pbe-bar-text {
  font-weight: bold;
  font-style: italic;
  color: #4a6c1b;
  font-size: 15px;
  margin-right: 10px;
  white-space: nowrap;
}
.pbe-bar-score {
  font-size: 18px;
  color: #205090;
  font-weight: bold;
  min-width: 48px;
  text-align: left;
}
.pbe-bar-offset {
  display: block;
}
.pbe-bar-content {
  display: flex;
  align-items: center;
  width: 100%;
}
.pbe-bar-group {
  margin-left: auto;
  align-self: flex-end;
}
@media (max-width: 600px) {
  .pbe-progress-bar-wrap {
    gap: 6px;
    margin: 5px 0;
    flex-direction: row;
    align-items: center;
  }
  .pbe-label {
    min-width: 90px;
    max-width: 90px;
    width: 90px;
    text-align: left;
    margin-bottom: 0;
  }
  .pbe-bar-bg {
    height: 18px;
    min-width: 40px;
    max-width: 120px;
  }
  .pbe-bar-text {
    font-size: 12px;
    margin-right: 5px;
  }
  .pbe-bar-score {
    font-size: 14px;
    min-width: 32px;
  }
  .pbe-bar-offset {
    width: 0 !important;
  }
  .pbe-bar-content {
    transform: translateX(0) !important;
  }
  .pbe-bar-group {
    margin-left: auto;
    align-self: auto;
  }
} 