/* ============================================
   Settings Page - 사이트 설정 페이지 전용
   순수 CSS (Tailwind @apply 사용하지 않음)
   네이밍: pg_site_settings (언더스코어)
   ============================================ */

.pg_site_settings .field_label {
  width: 10.5rem;
}

.pg_site_settings .hotel_detail_body > .section + .section_title {
  margin-top: 1.5rem;
}

.pg_site_settings .field_input.is_changed,
.pg_site_settings .field_textarea.is_changed {
  border-color: var(--c-error-light);
  background-color: color-mix(in srgb, var(--c-error-light) 8%, transparent);
}

/* ============================================
   Admin Users Page - 관리자 계정 관리
   ============================================ */

/* 이름 셀 */
.admin_name_cell {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

/* 시스템 계정 dot */
.admin_system_dot {
  flex-shrink: 0;
  width: 0.625rem;
  height: 0.625rem;
  border-radius: var(--radius-full);
  background-color: var(--c-red-400);
}

/* 모달 */
.admin_user_modal {
  max-width: 30rem;
}

/* ============================================
   Hotel Assignment Modal - 호텔 배정 관리
   ============================================ */

.ha_modal {
  max-width: 42rem;
  max-height: 85vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* 슈퍼관리자 안내 바 */
.ha_info {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-lg);
  background-color: #eff6ff;
  border: 1px solid #bfdbfe;
  margin-bottom: 0.75rem;
}

.dark .ha_info {
  background-color: rgba(37, 99, 235, 0.1);
  border-color: rgba(37, 99, 235, 0.3);
}

.ha_info_icon {
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  color: #2563eb;
  margin-top: 0.125rem;
}

.dark .ha_info_icon {
  color: #60a5fa;
}

.ha_info_text {
  font-size: 0.8125rem;
  color: #1d4ed8;
}

.dark .ha_info_text {
  color: #93c5fd;
}

/* 본문 영역 */
.ha_body {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* 로딩 */
.ha_loading {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1rem;
  color: var(--c-text-3);
  font-size: 0.875rem;
}

/* 모달 내 sd_dual 높이 오버라이드 */
.ha_modal .sd_dual_list {
  min-height: 14rem;
  max-height: 14rem;
}

.ha_modal .sd_dual_panel.is_selected .sd_dual_list {
  max-height: none;
}

