/* @import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100..900&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Nanum+Pen+Script&family=Noto+Sans+KR:wght@100..900&display=swap');

@font-face {
    font-family: '주아체';
    src: url('/fonts/BMJUA_ttf.ttf') format('truetype');

}

@font-face {
    font-family: '기랑해랑체';
    src: url('/fonts/BMKIRANGHAERANG-TTF.ttf') format('truetype');
}


* {
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: inherit;
}



a:hover {
    color: red;
}


.logo a {
    color: inherit;
}

.logo img {
    margin-right: 5px;
}

html, body, .wrap {
    margin: 0;
    padding: 0;
}


body {
    background-color: #f9f9f9;
}

main {
    background-color: white;
    padding: 1.2% 3% 3%;
    border : 1px solid #d3d3d3ee;
    border-radius: 20px;
}

ul, li {
    list-style: none;
    padding: 0;
}

li {
    display: inline-block;
}

.wrap {
    width: 100%;
}

main, .innerWrap {
    width: 100%;
    max-width: 1200px;
    display: block;
    margin: 0 auto;
}

header {  
    /* border-bottom: 1px solid #ebebeb; */
    border-bottom: 1px solid #d3d3d3ee;
    margin-bottom: 30px;
    background-color: white;
}

header>.innerWrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-align: center;
}

.logo * {
    vertical-align: bottom;
}

nav>ul {
    display: inline-block;
}


nav li {
    margin-top: 1px;
    margin-bottom: 1px;
    margin-left: 10px;
}

nav li>a {
    background-color: #f06595;
    /* padding: 2px 10px; */
    padding: 5px 25px;
    border-radius: 5px;
    color: white;
    display: inline-block;

}

nav li>a:hover {
    background-color: #228be6;
    color: white;
}

table {
    width: 100%;
    text-align: center !important;
    font-size: 14px;
}

td {
    text-align: center !important;
}

thead {
    background-color: #f3f3f3;

}

.dt-column-title {
    text-align: center;
}

.submitbtn {
    color: red;
    display: block;
    width: 100%;
    border: 0;
    background-color: #00BCD4;
    border-radius: 10px;
    padding: 10px;
    color: white;
    margin-top: 50px;
    cursor: pointer;
    font-size: 18px;
}

.submitbtn:hover {
    background-color: blueviolet;
    color: yellow;
}

.modifybtn {
    display: inline-block;
    padding: 2px 10px;
    background-color: aquamarine;
    border-radius: 5px;
}

.modifybtn:hover {
    background-color: blue;
    color: white;
}

hr {
    color: red;
}

P {
    margin-top: 0;
}

footer {
    margin-top: 60px;
    padding: 20px 0;
    border-top: 1px solid #ebebeb;
    text-align: center;
    /* color: rgb(66, 60, 60); */
    color: white;
    background-color: #545454;
}


footer table {
    display: inline-block;
    margin: auto;
    width: auto;
}

footer td {
    padding: 0 10px;
}

footer th {
    text-align: left !important;
}

pre {
    font-family: inherit;
    color: inherit;
    font-size: inherit;
}

.note-editable {
    font-family: "Noto Sans KR", sans-serif;
}

.flex {
    display: flex;
}