.form-row {
  display: flex;
  gap: 16px; /* 두 피커 사이의 간격 */
  align-items: flex-start;
}

.form-row .field {
  flex: 1; /* 균등하게 50:50 분할 */
  min-width: 0; /* Flexbox 내부 오버플로우 방지 */
}

/* Picker Container */
.picker-container {
  display: flex;
  justify-content: center;
  gap: 12px;
  height: 200px; /* 가로 배치 시 높이를 살짝 키워 터치 영역 확보 */
  position: relative;
  margin: 10px 0 0; /* 하단 여백 제거 (row가 처리) */
  mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
  user-select: none; 
  -webkit-user-select: none;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid var(--border);
}

/* 휠 중앙 하이라이트 바 */
.picker-highlight {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 40px;
  margin-top: -20px;
  background: rgba(79, 70, 229, 0.1);
  border-radius: 8px;
  z-index: 0;
  pointer-events: none;
}
/* 개별 컬럼 */
.picker-col {
  flex: 1;
  /* max-width 제거: 가로 배치 시 꽉 차게 */
  height: 100%;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scrollbar-width: none;
  text-align: center;
  position: relative;
  padding: 0;
  cursor: grab;
  z-index: 1;
}
.picker-col.active { cursor: grabbing; scroll-snap-type: none; scroll-behavior: auto; }
.picker-col::-webkit-scrollbar { display: none; }

.picker-item {
  height: 40px;
  line-height: 40px;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-muted);
  scroll-snap-align: center;
  transition: all 0.2s;
  cursor: pointer;
}

.picker-item.selected {
  color: var(--primary);
  font-weight: 800;
  font-size: 1.4rem;
  transform: scale(1.1);
}

.result {
  margin-top: 32px; /* 위쪽 여백 조금 더 확보 */
  padding: 24px;
  background: white;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  text-align: center;
}
.resultRow {
  margin-bottom: 12px;
}

.k {
  color: var(--text-muted);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.v {
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--primary);
  line-height: 1.1;
}

#bmiCategory {
  font-size: 1.5rem;
  color: var(--text-main);
}