.op-dashboard .card {
  border-radius: 12px;
}

.op-completion {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 14px;
}

.op-completion__top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.op-completion__title {
  font-weight: 700;
}

.op-completion__value {
  font-weight: 800;
}

.op-progress {
  height: 10px;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 999px;
  overflow: hidden;
}

.op-progress__bar {
  height: 100%;
  background: linear-gradient(90deg, #0274be, #61ce70);
  width: 0%;
  border-radius: 999px;
}

.op-completion__tips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.op-tip {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(2, 116, 190, 0.08);
  color: #114b6b;
  font-size: 12px;
}

.op-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}

.op-step {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  text-decoration: none;
  font-weight: 600;
}

.op-step.is-active {
  border-color: rgba(2, 116, 190, 0.35);
  box-shadow: 0 6px 18px rgba(2, 116, 190, 0.12);
}

.op-step--preview {
  margin-left: auto;
}

.op-expertise-list {
  max-height: 360px;
  overflow: auto;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.7);
}

