/*@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;400;700&display=swap');*/

* {
    box-sizing: border-box;
    font-weight: lighter;
    /*font-family: 'Noto Sans KR', sans-serif;*/
}

html, body {
    width: 100%;
    height: 100%;
}

th {
    border: 1px solid #BBB;
    padding: 7px;
    background-color: #DDD;
}

td {
    border: 1px solid #BBB;
    padding: 4px 5px;
    font-weight: normal;
}

#menus li.selected {
    background-color: rgb(243, 244, 246);
    font-weight: bold;
    color: darkblue;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}


.curtain {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #0005;
    z-index: 5000;
}

.popup {
    position: relative;
    width: 70%;
    max-width: 400px;
    margin: 110px auto 0 auto;
    min-height: 150px;
    z-index: 5100;
    display: grid;
    grid-template-rows: 1fr auto;
    padding: 1rem;
    border-radius: 0.5rem;
}

.bottom-menu button {
    color: white;
    padding: 0.6rem;
}

button:disabled,
button[disabled] {
    opacity: 0.2;
    pointer-events: none;
}

button:hover {
    opacity: 0.8;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}