.ebl-ach-progress {
  font-family: inherit;
  max-width: 480px;
}

/* Header */
.ebl-ach-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.ebl-ach-img {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}
.ebl-ach-name {
  font-size: 15px;
  font-weight: 600;
  color: #005D6C;
  margin: 0 0 2px;
}
.ebl-ach-desc {
  font-size: 13px;
  color: #66B2B6;
  margin: 0;
}

/* Progress bar */
.ebl-progress-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.ebl-progress-track {
  flex: 1;
  height: 8px;
  background: #A7E0E1;
  border-radius: 99px;
  overflow: hidden;
}
.ebl-progress-fill {
  height: 100%;
  background: #1D95A2;
  border-radius: 99px;
  transition: width 0.5s ease;
}
.ebl-progress-fill.complete {
  background: #005D6C;
}
.ebl-progress-label {
  font-size: 12px;
  font-weight: 600;
  color: #66B2B6;
  white-space: nowrap;
  min-width: 40px;
  text-align: right;
}
.ebl-ach-earned .ebl-progress-label {
  color: #005D6C;
}

/* Steps */
.ebl-steps-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ebl-step {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 4px;
}
.ebl-step--done    { color: #005D6C; }
.ebl-step--current { color: #017481; }
.ebl-step--locked  { color: #66B2B6; }
.ebl-step--open    { color: #017481; }

/* Step icon */
.ebl-step-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  display: flex;
}
.ebl-step-icon svg {
  width: 16px;
  height: 16px;
}

/* Step body */
.ebl-step-body {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  font-size: 13px;
  font-weight: 500;
}
.ebl-step-unknown {
  letter-spacing: 0.12em;
  opacity: 0.45;
}
.ebl-step-count {
  font-size: 11px;
  font-weight: 600;
  background: rgba(1, 116, 129, 0.1);
  color: #017481;
  padding: 1px 7px;
  border-radius: 99px;
}

/* Simple earned badge */
.ebl-ach-badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 99px;
}
.ebl-ach-badge.earned  { background: #F2F8FA; color: #005D6C; border: 1px solid #66B2B6; }
.ebl-ach-badge.pending { background: #F2F8FA; color: #66B2B6; border: 1px solid #A7E0E1; }
