

/********************************/
/****** 여기서 폰트 정의 css 시작 ******/
/********************************/

@font-face {
    font-family: 'basic_r';
    src: url('/fonts/NotoSansKR-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'static_r';
    src: url('/fonts/DoHyeon-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'static_b';
    src: url('/fonts/BlackHanSans-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'radius_r';
    src: url('/fonts/GowunBatang-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'radius_b';
    src: url('/fonts/GowunBatang-Bold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'radius_rr';
    src: url('/fonts/Jua-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'cute_r';
    src: url('/fonts/GamjaFlower-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'cute_b';
    src: url('/fonts/SingleDay-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/********************************/
/****** 여기서 바디 정의 css 시작 ******/
/********************************/

html, body {
	height: 100%;
    overflow: hidden;
}

body {
    font-family: 'basic_r', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff;
    will-change: transform;
}

/* 모달 배경 */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    visibility: hidden;
}

/* 모달 창 */
.modal {
    background: white;
    padding: 20px;
    border-radius: 8px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* 모달 창 제목 */
.modal-title {
    font-size: 1.2em;
    margin-bottom: 10px;
}

/* 모달 창 내용 */
.modal-content {
    margin-bottom: 20px;
}

/* 모달 창 alert 확인 버튼 */
.modal-button {
    background-color: #2572fa;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
}

/* 버튼 컨테이너 */
.modal-button-container {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

/* 모달 창 confirm 확인 버튼 */
.modal-button-confirm {
    background-color: #2572fa;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 45%;
    max-width: 200px;
}

/* 모달 창 confirm 취소 버튼 */
.modal-button-reject {
    background-color: #d9534f;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 45%;
    max-width: 200px;
}