/* 개인정보처리방침 모달 — 네이티브 스크롤바(화살표 포함) 숨김 */
.privacy-scroll-hide,
#privacyModalBody,
#termsModalBody {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.privacy-scroll-hide::-webkit-scrollbar,
#privacyModalBody::-webkit-scrollbar,
#termsModalBody::-webkit-scrollbar {
  width: 0 !important;
  height: 0 !important;
  display: none !important;
  background: transparent;
}

#privacyScrollTrack,
#termsScrollTrack {
  pointer-events: none;
  position: absolute;
  top: 16px;
  right: 6px;
  bottom: 16px;
  z-index: 10;
  width: 6px;
}

#privacyScrollThumb,
#termsScrollThumb {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  min-height: 40px;
  border-radius: 999px;
  background-color: #cfcfcf;
  opacity: 0;
  transition: opacity 0.2s ease, background-color 0.2s ease;
}

#privacyScrollThumb.is-visible,
#termsScrollThumb.is-visible {
  opacity: 1;
}

#privacyScrollThumb.is-visible:hover,
#termsScrollThumb.is-visible:hover {
  background-color: #b0b0b0;
}

/* 비급여항목 표: 마지막 행 border + 컨테이너 border 이중선 방지 */
.price-group table tbody tr:last-child {
  border-bottom-width: 0;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
