/* 초기화 스타일 (Reset) */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
  background-color: #ffffff;
  color: #212121;
  font-family: "Pretendard";
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.8px;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Pretendard 웹폰트 등록 - 400, 500, 700 굵기 */
@font-face {
  /* regular */
  font-family: "Pretendard";
  src: url("https://fastly.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Regular.woff")
    format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  /* medium */
  font-family: "Pretendard";
  src: url("https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Medium.woff")
    format("woff");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  /* bold */
  font-family: "Pretendard";
  src: url("https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Bold.woff")
    format("woff");
  font-weight: 700;
  font-style: normal;
}

/* 링크 기본 스타일 */
a {
  color: inherit;
  text-decoration: none;
}

/* 이미지 반응형 */
img {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
}

/* 기본 반응형 최대 크기 지정 */
.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.25rem;
  overflow-y: auto;
  background-color: white;
  /* height: 100vh;; */
}

/* 컨테이너 스크롤바 숨김 */
.container::-webkit-scrollbar {
  display: none;
}

/* 모달 창 컨테이너 */
.modal-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

/* 모달 창 컨테이너 기본 숨김 처리 */
.modal-hidden {
  /* display: none; */
}

/* 모달 창 컨테이너 안에 박스 공통 */
.modal-inbox {
  position: fixed; /* 화면 기준 고정 */
  top: 50%; /* 세로 중앙 */
  left: 50%; /* 가로 중앙 */
  transform: translate(-50%, -50%); /* 정확히 중앙 정렬 */
  z-index: 1000;
  background-color: white;
  border-radius: 0.75rem;
  width: 84%;
  padding: 0.75rem;
  max-width: 600px;
}

/* 타이틀 h1 공통 */
.title-h1 {
  color: #212121;
  padding-top: 1.875rem;
  padding-bottom: 1.5rem;
  font-size: 1.375rem;
}

/* 헤더 영역 제외 */
.base-header {
  /* height: calc(100vh - 3.75rem); */
}

/* 헤더 영역 제외 */
.base-header-status {
  height: calc(100vh - 3.75rem);
}

.spinner {
  margin: 0 auto;
  border: 6px solid #eee;
  border-top: 6px solid #2196f3;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
