/*
 * apps/lotto-results.css
 * "회차별 당첨결과 / 당첨번호 조회" 전용 레이아웃 보조 스타일.
 * 공용 컴포넌트(.round-nav-row, .result-card, .prize-table, .checker-*, .lotto-ball 등)는
 * css/style.css 에 정의되어 있으며, 이 파일에는 이 기능에서만 쓰는 세부 조정만 둔다.
 */

.result-input-echo {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 12px;
}

.result-input-echo .lotto-ball {
  opacity: 0.35;
}

.result-input-echo .lotto-ball.is-matched {
  opacity: 1;
  box-shadow: 0 0 0 3px var(--color-primary-soft);
}

.checker-error {
  font-size: 12.5px;
  color: var(--color-danger);
  margin-top: 8px;
}
