/* 単一責務: セル内の候補人数バッジの見た目を定義する。 */
.has-candidate-count {
  position: relative;
  padding-right: 20px;
}

.candidate-count-badge {
  position: absolute;
  top: 2px;
  right: 3px;
  min-width: 15px;
  height: 15px;
  border-radius: 8px;
  background: #1f6f4a;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 15px;
  text-align: center;
}

.candidate-count-badge.is-zero {
  background: #9aa4b2;
}
