/* 라디오 기본 입력 숨기기 */
input[type='radio'] {
    position: absolute;
    transform: scale(0);
  }

  /* 라디오 선택 시 내부 점 모양 만들기 */
  input[type='radio']:checked ~ .radio {
    border-color: var(--bs-primary);
    border-width: 7px; /* 테두리를 두껍게 해서 점처럼 보이게 함 */
    background-color: #fff; /* 배경색 */
    border-radius: 50%; /* 완전한 원형 유지 */
  }

  /* 라디오 기본 테두리 상자 */
  .radio {
    display: block;
    width: inherit;
    height: inherit;
    border: solid 2px #2a2a2a2e;
    border-radius: 6px;
    transition: all 0.3s;
    box-sizing: border-box;
  }

  /* 라디오 라벨 컨테이너 (chkLabel과 동일한 규격) */
  .radioLabel {
    display: inline-block;
    width: 25px;
    height: 25px;
    cursor: pointer;
    line-height: 25px;
    vertical-align: middle;
  }