@font-face {
    font-family: 'BMJUA';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_one@1.0/BMJUA.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

html {
    height: 100dvh;
}

body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    font-family: 'BMJUA', sans-serif;
    background-color: #D9E8DE;
}

header {
    box-sizing: border-box;
    height: 50px;
    width: 100%;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    color: white;
    background-color: #6BA07B;
    font-weight: bold;
    font-size: 1.5rem;
    align-items: center;
    display: inline-flex;
}

main {
    background-color: white;
    padding: 0em 0.5em 0.5em 0.5em;
    overflow-y: scroll;
    height: calc(100dvh - 50px - 50px);
}

footer {
    height: 50px;
    padding: 0.5em 0.5em 0.5em 0.5em;
    line-height: 150%;
    text-align: right;
}

button.menu {
    background-color: #7BB68D;
    /*border-color: #7BB68D;*/
    border-color: #4B7357;
    border-style: solid;
    border-radius: 0.3em;
    padding: 0.2em 0.2em 0.2em 0.2em;
    margin-right: 0.5em;
}

button.menu svg {
    fill: white;
}

div.title {
    display: inline-flex;
    /* flex-grow: 1; */
}

div.user-info {
    /* flex-grow: 1; */
    align-items: center;
    align-content: end;
    text-align: end;
    margin-left: auto;
    font-size: 1rem;
}

button.user-logout {
    color: #6BA07B;
    background-color: #D9E8DE;
    ;
    border-width: 0;
    border-radius: 0.3rem;
    font-weight: bold;
}


/* 로그인 */
div.login-container {
    display: flex;
    flex-direction: column;
    font-size: 1rem;
    padding-left: 2rem;
    padding-right: 2rem;
    padding-top: 5rem;
    padding-bottom: 5rem;

}



label.form-label {
    padding-top: 0.4rem;
    padding-bottom: 0.4rem;
    font-size: 1rem;
}

input.form-input {
    padding: 0.4rem 0.4rem 0.4rem 0.4rem;
    font-size: 1rem;
    border-width: 1px;
    border-radius: 0.3rem;
}

button.form-button {
    margin-top: 1rem;
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;

    font-family: 'BMJUA', sans-serif;
    font-size: 1rem;

    color: white;
    background-color: #6BA07B;

    border-width: 0px;
    border-radius: 0.3rem;
}


/* 메시지 */
div.message {
    border-color: #D9E8DE;
    border-width: 0.2em;
    border-style: solid;
    border-radius: 0.5em;
    background-color: #F4F4F4;
    margin-bottom: 0.5em;
}

pre.message {
    font-size: 1.2rem;
    padding: 0.5em;
    font-family: 'BMJUA'
}

div.date {
    font-size: 1rem;
    text-align: right;
    padding: 0.5em;
}

div.size-selector {
    padding: 0.5em;
    text-align: right;
}

div.size-selector select {
    font-size: 1rem;
    border-radius: 0.2em;
    padding: 0.2em;
}

div.container {
    display: flex;
    gap: 1rem;
    /* div 간격을 주고 싶다면 */
    justify-content: space-between;
    align-items: center;
}

div.box {
    padding: 0.5em;
}

.tabs {
    display: flex;
    gap: 0.1rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.tab {
    font-family: 'BMJUA', sans-serif;
    padding: 0.5rem 0.8rem;
    border: 1px solid #ccc;
    text-decoration: none;
    color: black;
}

.active {
    background-color: #224431;
    color: white;
}

.content {
    border: 1px solid #ccc;
    padding: 1rem;
}