/* ============================================
   정산관리 (Settlements) — 전용 CSS
   공통 UI 컴포넌트는 components.css 에 정의
   탭 바 컴포넌트는 components.css 에 정의
   이니시스 등록상태 배지는 components.css 에 정의
   결제/환불 배지는 reservations.css 에 정의
   액터 배지는 reservations.css 에 정의
   이 파일은 정산관리 페이지에만 필요한 추가 스타일
   ============================================ */

/* ── 일괄 정산완료 버튼 (result-header 내) ── */
.btn-batch-settle {
  font-family: var(--font-family);
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  background: var(--primary);
  border: none;
  border-radius: var(--radius-sm);
  padding: 8px 16px;
  cursor: pointer;
  transition: background 0.15s ease;
  margin-right: 8px;
}

.btn-batch-settle:hover {
  background: var(--primary-hover);
}

/* ── 강제 승인 버튼 (초록) ── */
.btn-action--confirm {
  font-family: var(--font-family);
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  background: var(--success);
  border: none;
  border-radius: var(--radius-sm);
  padding: 8px 16px;
  cursor: pointer;
}

/* ── 보류 해제 버튼 (아웃라인) ── */
.btn-action--outline {
  font-family: var(--font-family);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: var(--radius-sm);
  padding: 8px 16px;
  cursor: pointer;
  transition: all 0.15s ease;
}

.btn-action--outline:hover {
  background: var(--surface-base);
  border-color: rgba(0, 0, 0, 0.25);
}

/* ── 정산금액 강조 (상세 화면) ── */
.settlement-amount-highlight {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
}

/* ── 상단 요약 카드 래퍼 ── */
.summary-section {
  background: var(--surface-card);
  box-shadow: var(--shadow-card);
  border-radius: var(--radius-card);
  padding: 24px;
  margin-bottom: 24px;
}

.summary-section .stat-cards {
  margin-bottom: 12px;
}

.summary-section .stat-cards:last-child {
  margin-bottom: 0;
}

/* ── 기간 퀵버튼 (filter-period-btn) → components.css 로 이동 ── */

/* ── (삭제됨) 2행 compact 스타일 → 1행과 동일한 폰트 크기로 통일 ──
   stat-card--compact 클래스 제거, 기본 stat-card 스타일을 그대로 사용 */

/* ── 금액 필터 인풋 (payments.css 미로드이므로 settlements.css에 추가) ── */
.filter-input--amount {
  width: 140px;
}


/* ── 체크박스 칼럼 → components.css 에 통합 ── */
