* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Malgun Gothic", "맑은 고딕", "Apple SD Gothic Neo", Dotum, sans-serif;
  font-size: 13px;
  color: #333;
  background: #fff;
}

.page {
  width: 100%;
  min-width: 980px;
}

/* ===== 페이지 타이틀 ===== */
.page-title {
  font-size: 17px;
  font-weight: 700;
  color: #333;
  padding: 12px 4px;
  border-bottom: 2px solid #333;
}

/* ===== 사용자번호 검색 바 ===== */
.search-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: #fafafa;
  border-bottom: 1px solid #e0e0e0;
}

.req-dot {
  color: #e8112d;
  font-size: 16px;
  line-height: 1;
}

.search-bar__label {
  font-weight: 700;
  color: #333;
  margin-right: 6px;
}

.search-bar__input-wrap {
  position: relative;
  display: inline-flex;
}

.search-bar__input {
  width: 210px;
  height: 34px;
  padding: 0 34px 0 10px;
  border: 1px solid #cfcfcf;
  background: #f0f0f0;
  color: #555;
  font-size: 13px;
}

.search-bar__icon {
  position: absolute;
  right: 0;
  top: 0;
  width: 33px;
  height: 34px;
  border: 1px solid #cfcfcf;
  border-left: none;
  background: #fff;
  cursor: pointer;
}

.ico-search {
  display: inline-block;
  width: 12px;
  height: 12px;
  border: 2px solid #888;
  border-radius: 50%;
  position: relative;
}
.ico-search::after {
  content: "";
  position: absolute;
  right: -5px;
  bottom: -4px;
  width: 7px;
  height: 2px;
  background: #888;
  transform: rotate(45deg);
}

/* ===== 버튼 ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  height: 34px;
  padding: 0 14px;
  border: none;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  white-space: nowrap;
}

.btn--red {
  background: #e8112d;
}

.btn--orange {
  background: #f5821f;
}

.btn--sm {
  height: 26px;
  padding: 0 12px;
  font-weight: 400;
  font-size: 12px;
}

.ico-q {
  display: inline-block;
  width: 11px;
  height: 11px;
  border: 2px solid #fff;
  border-radius: 50%;
  position: relative;
}
.ico-q::after {
  content: "";
  position: absolute;
  right: -4px;
  bottom: -3px;
  width: 6px;
  height: 2px;
  background: #fff;
  transform: rotate(45deg);
}

/* ===== 탭 ===== */
.tabs {
  display: flex;
  gap: 4px;
  padding: 14px 16px 0;
  border-bottom: 1px solid #d0d0d0;
}

.tab {
  padding: 10px 22px;
  border: 1px solid #d0d0d0;
  border-bottom: none;
  background: #f2f2f2;
  color: #999;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 3px 3px 0 0;
  position: relative;
  top: 1px;
}

.tab.is-active {
  background: #fff;
  color: #333;
  border-top: 2px solid #e8112d;
}

.tab-body {
  padding: 22px 16px 40px;
}

.tab-panel {
  display: none;
}
.tab-panel.is-active {
  display: block;
}

/* ===== 카드 (회원조회) ===== */
.card {
  max-width: 1400px;
  margin: 0 auto;
  border: 1px solid #d9d9d9;
}

.card__head {
  background: #e8112d;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 18px;
}

.card__body {
  padding: 26px 22px;
}

/* ===== 필터 폼 ===== */
.filter {
  border: 1px solid #dcdcdc;
  border-top: 2px solid #555;
  padding: 16px 18px;
  margin-bottom: 22px;
}

.filter__row {
  display: flex;
  align-items: center;
  gap: 10px 26px;
  flex-wrap: wrap;
}
.filter__row + .filter__row {
  margin-top: 12px;
}

.filter__field {
  display: flex;
  align-items: center;
  gap: 10px;
}

.filter__field label {
  font-weight: 700;
  color: #333;
  min-width: 52px;
}

.filter__field input {
  width: 150px;
  height: 30px;
  padding: 0 8px;
  border: 1px solid #c9c9c9;
  font-size: 12px;
}

.filter__field input.is-dashed {
  border: 1px solid #333;
  letter-spacing: 2px;
}

.filter__btn {
  margin-left: 10px;
}

/* ===== 그리드 (표) ===== */
.table-wrap {
  overflow-x: auto;
  margin-bottom: 8px;
}

.grid {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto 30px;
  border-collapse: collapse;
  border-top: 1px solid #b8c6d9;
}

.grid thead th {
  background: #eef3f9;
  color: #4a76a8;
  font-weight: 700;
  border: 1px solid #cdd9e5;
  padding: 10px 8px;
  text-align: center;
  white-space: nowrap;
}

.grid tbody td {
  border: 1px solid #dfe4ea;
  padding: 9px 10px;
  text-align: center;
  color: #333;
}

.grid tbody tr:nth-child(even) td {
  background: #f7f8fa;
}

.grid__empty td {
  padding: 90px 10px;
  color: #555;
  background: #fff !important;
}

.grid--tall .grid__empty td {
  padding: 150px 10px;
}

/* ===== 섹션 타이틀 ===== */
.sec-title {
  font-size: 14px;
  font-weight: 700;
  color: #e8112d;
  margin: 10px 0 8px;
}

/* ===== 확인서출력 툴바 ===== */
.print-toolbar {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.print-toolbar__select {
  height: 32px;
  min-width: 190px;
  padding: 0 8px;
  border: 1px solid #c9c9c9;
  font-size: 12px;
  margin-right: 6px;
}

/* ===== 안내문 ===== */
.notice {
  margin-top: 26px;
  font-size: 12px;
  color: #555;
  line-height: 1.9;
}

.notice__title {
  font-weight: 700;
  color: #333;
  margin-top: 10px;
}
.notice__title:first-child {
  margin-top: 0;
}
