.segmented-panels {
  height: 100%;
}

/* 탭 버튼 */
.segmented-tabs {
  display: flex;
  background: var(--color-bg-front);
  border-radius: 8px;
  padding: 6px;
}

.segmented-tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  border: none;
  background: transparent;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  color: var(--color-system-300);
  border-radius: 8px;
  cursor: pointer;
}

/* 선택된 탭 */
.segmented-tab.is-active {
  background: var(--color-primary-400);
  color: var(--color-bg-back);
}

.segmented-panel {
  display: none;
}
.segmented-panel.is-active {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.radio-group {
  display: flex;
  flex-direction: column;
}

/* 라벨 전체가 클릭 가능 */
.radio-item {
  height: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

/* input 숨기기 */
.radio-item input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* 아이콘 (기본 상태) */
.radio-icon {
  width: 24px;
  height: 24px;
  background-image: url('/assets/icons/radio_off.png'); /* 선택 전 이미지 */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

/* 선택된 상태 */
.radio-item input[type="radio"]:checked + .radio-icon {
  background-image: url('/assets/icons/radio_on.png'); /* 선택 후 이미지 */
}

/* 텍스트 */
.radio-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-system-100);
}

.role-box {
  display: none;
}
.role-box.is-active {
  display: flex;
  flex-direction: column;
  gap: 24px;
}