/* 개인정보처리방침 모달 — 네이티브 스크롤바(화살표 포함) 숨김 */
.privacy-scroll-hide,
#privacyModalBody,
#termsModalBody,
#priceModalBody {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.privacy-scroll-hide::-webkit-scrollbar,
#privacyModalBody::-webkit-scrollbar,
#termsModalBody::-webkit-scrollbar,
#priceModalBody::-webkit-scrollbar {
  width: 0 !important;
  height: 0 !important;
  display: none !important;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
}

#privacyScrollTrack,
#termsScrollTrack,
#priceScrollTrack {
  pointer-events: none;
  position: absolute;
  top: 16px;
  right: 6px;
  bottom: 16px;
  z-index: 10;
  width: 6px;
}
#privacyScrollThumb,
#termsScrollThumb,
#priceScrollThumb {
  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,
#priceScrollThumb.is-visible {
  opacity: 1;
}

#privacyScrollThumb.is-visible:hover,
#termsScrollThumb.is-visible:hover,
#priceScrollThumb.is-visible:hover {
  background-color: #b0b0b0;
}

/* 비급여항목 표 */
.price-group {
  overflow: hidden;
}

.price-table {
  table-layout: fixed;
}

.price-table .price-cell {
  word-break: keep-all;
  overflow-wrap: break-word;
  line-height: 1.45;
  vertical-align: center;
}

.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;
  }
}
