@import url(./fonts.css);
@import url(./layout.css);

html,
body,
div,
ul,
li,
p,
h3,
h1,
h2,
h4,
h5 {
    padding: 0;
    margin: 0;
    line-height: 1;
}
ul,
li {
    list-style: none;
}
a {
    text-decoration: none;
    color: #000;
}
optgroup,
select,
button {
    cursor: pointer;
}
input::-webkit-input-placeholder {
    color: #afafaf;
    font-weight: 400;
}
textarea::-webkit-input-placeholder {
    color: #afafaf;
    font-weight: 400;
}
input::-ms-input-placeholder {
    color: #afafaf;
    font-weight: 400;
}
textarea::-ms-input-placeholder {
    color: #afafaf;
    font-weight: 400;
}
input::-moz-placeholder {
    color: #afafaf;
    font-weight: 400;
}
textarea::-moz-placeholder {
    color: #afafaf;
    font-weight: 400;
}
input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px #fff inset;
}
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
}
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
}
select::-ms-expand {
    display: none;
}
select {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
}
img {
    vertical-align: top;
}
body {
    width: 100%;
    position: relative;
    box-sizing: border-box;
    overscroll-behavior-y: none;
}
#wrap {
    min-width: 1440px;
    width: 100%;
}
caption {
    display: none;
}
* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    -webkit-text-size-adjust: none;
    -webkit-appearance: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-font-smoothing: antialiased;
    outline: none;
}
* {
    font-family: Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji",
        "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    line-height: 1em;
    color: #000;
    box-sizing: border-box;
    font-weight: normal;
    font-weight: 400;
    word-break: keep-all;
}
i,
em {
    line-height: inherit;
    font-style: normal;
}
.blind {
    font-size: 0 !important;
    color: transparent !important;
}
span,
i,
strong,
q {
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    color: inherit;
    letter-spacing: inherit;
    font-family: inherit;
}
q::before,
q::after {
    content: none;
}
b {
    font-size: inherit;
    font-weight: 500;
    line-height: inherit;
    color: inherit;
    letter-spacing: inherit;
    font-family: inherit;
}
table {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
    border-spacing: 0;
}
button {
    border: none;
    background-color: transparent;
}

/* 공통 버튼 */
.btn_border {
    display: inline-block;
    vertical-align: top;
    border: 1px solid #000;
    padding: 0 22px;
    line-height: 43px;
    font-size: 16px;
    color: #000;
    border-radius: 45px;
    font-weight: 500;
    background-color: #fff;
}

.btn_border:hover {
    background-color: #000;
    color: #fff;
}

.btn_bg {
    display: inline-block;
    vertical-align: top;
    border: 1px solid #000;
    padding: 0 22px;
    line-height: 43px;
    font-size: 16px;
    color: #fff;
    border-radius: 45px;
    font-weight: 500;
    background-color: #000;
}

.btn_bg:hover {
    background-color: #fff;
    color: #000;
}

.btn_reject {
    display: inline-block;
    vertical-align: top;
    border: 1px solid #e7e7e7;
    padding: 0 22px;
    line-height: 43px;
    font-size: 16px;
    color: #000;
    border-radius: 45px;
    font-weight: 500;
    background-color: #e7e7e7;
}

.btn_reject:hover {
    background-color: #d2d2d2;
}


/* 전체 화면을 덮는 어두운 오버레이 */
#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* 어두운 배경 */
    display: none; /* 처음엔 보이지 않도록 */
    z-index: 9999;
}

/* 로딩바 스타일 */
#loadingContainer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* 화면 중앙 정렬 */
    text-align: center;
    color: white;
}

#loadingBar {
    width: 100%;
    background-color: #f3f3f3;
    height: 20px;
    border-radius: 5px;
    margin-top: 20px;
}

#progress {
    height: 100%;
    background-color: #4caf50;
    width: 0%;
    border-radius: 5px;
}

/* 다운로드 퍼센트 텍스트 */
#percentage {
    font-size: 18px;
    font-weight: bold;
    color: white;
}