html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  font-family: "Pretendard", "Apple SD Gothic Neo", "Noto Sans KR",
    -apple-system, BlinkMacSystemFont, system-ui, "Segoe UI", Roboto,
    "Helvetica Neue", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji",
    "Segoe UI Symbol", sans-serif !important;
}

.common_container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 140px 0px 120px 0px;
  box-sizing: border-box;
  color: #333333;
}

.common_title_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.common_title {
  font-size: 28px;
  font-weight: bold;
  font-family: "Pretendard";
  color: #000000;
  letter-spacing: -0.7px;
}

.registration_btn {
  /* width: 100px;
    height: 35px; */
  background-color: #ffffff;
  color: #333333;
  font-size: 14px;
  border: 1.5px solid #dfdfdf;
  padding: 5px 12px;

  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Pretendard";
  font-weight: 600;
  gap: 7px;
}
.registration_btn:hover {
  background-color: #f6f6f6;
}
/* 다운로드 버튼 */
.download_btn {
  /* width: 100px;
    height: 35px; */
  padding: 5px 12px;
  background-color: #ffffff;
  color: #1e8b36;
  font-size: 14px;
  border: 1.5px solid #dfdfdf;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  gap: 7px;
}
.download_btn:hover {
  background-color: #f6f6f6;
}
/* 연장 버튼  */
.extend_btn {
  /* width: 100px;
    height: 35px; */
  padding: 5px 12px;
  background-color: #ffffff;
  color: #0057ff;
  font-size: 14px;
  border: 1.5px solid #0057ff;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  gap: 7px;
}
.extend_btn:hover {
  background-color: #f6f6f6;
}
/* 선택승인버튼  */
.select_check_btn {
  /* width: 100px;
    height: 35px; */
  padding: 5px 12px;
  background-color: #ffffff;
  color: #333333;
  font-size: 14px;
  border: 1.5px solid #333333;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  gap: 7px;
}
.select_check_btn:hover {
  background-color: #f6f6f6;
}

/* 업로드 버튼 */
.upload_btn {
  padding: 5px 12px;
  background-color: #ffffff;
  color: #333333;
  font-size: 14px;
  border: 1.5px solid #dfdfdf;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  gap: 7px;
}
.upload_btn:hover {
  background-color: #f6f6f6;
}
/* 헤더부분 버튼들 따로 */
.registration_btn_header {
  font-size: 16px;
  padding: 8px 12px;
}
.download_btn_header {
  padding: 8px 12px;
  font-size: 16px;
}
.upload_btn_header {
  padding: 8px 12px;
  font-size: 16px;
}

.upload_btn_header > img {
  width: 16px;
  height: 16px;
}
.download_btn_header > img {
  width: 16px;
  height: 16px;
}
.registration_btn_header > img {
  width: 16px;
  height: 16px;
}
/* 데이트 피커 검색부분  */
.header_search_btn {
  width: 59px;
  padding: 12px 16px;
  background-color: #333333;
  color: #ffffff;
  border-radius: 4px;

  /* 기본 스타일 제거 */
  border: none; /* 기본 테두리 제거 */
  outline: none; /* 포커스 시 기본 아웃라인 제거 */
  box-shadow: none; /* 기본 그림자 제거 */
  cursor: pointer; /* 커서를 포인터로 변경 */

  /* 버튼 속 글자 */
  font-size: 16px; /* 기존 글자 크기 유지 */
  font-weight: 500; /* 기존 글자 두께 유지 */
  letter-spacing: -0.4px; /* 기존 글자 간격 유지 */
  text-align: center; /* 기존 텍스트 정렬 유지 */
}

svg {
  cursor: pointer;
}

html,
body {
  height: 100% !important;
  margin: 0;
}

/* 전체를 Flex로 구성 */
.page_wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* 본문 영역이 남는 공간을 채우도록 */
.page_content {
  flex: 1;
}
