@import url("https://fonts.googleapis.com/css?family=Roboto:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i");
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+KR:100,300,400,500,700,900");

body {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Roboto", "Roboto Regular", "Noto Sans KR";
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    width: 100%;
    min-width: 1180px;
    background-color: #f4f4f4;
}

body * {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body > .content {
    height: calc(100vh - 50px - 25px);
}

body > .overlay {
    display: none;
    position: fixed;
    width: 100%; height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    z-index: 101;
    left: 0; top: 0;
}

body > .overlay.on {
    display: block;
}

body > header {
    height: 50px;
    background-color: #333333;
    /* background-color: #4169E2; */
    /* background-image: -webkit-linear-gradient(302deg, #4c23b6, #8341e6);
    background-image: -o-linear-gradient(302deg, #4c23b6, #8341e6);
    background-image: linear-gradient(32deg, #4c23b6, #8341e6);     */
    z-index:100;
    position: fixed;
    top: 0;
    width: 100%;
}

body > header * {
    color: #ffffff;
}

body > header > .navbar-toggler {
    outline: none;
    padding: 4px 8px 4px 8px;
    border-color: #cccccc;
}

body > header > .navbar-toggler:hover {
    background-color: #3d3d3d;
}

body > header a:hover {
    text-decoration: none;
    color: #cccccc;
}

body > footer {
    background-color: #333333;
    /* background-image: -webkit-linear-gradient(302deg, #4c23b6, #8341e6);
    background-image: -o-linear-gradient(302deg, #4c23b6, #8341e6);
    background-image: linear-gradient(32deg, #4c23b6, #8341e6);     */
    height: 25px;
    position: fixed;
    bottom: 0;
    z-index: 100;
    width: 100%;
    color: #ffffff;
    font-size: 14px;
    text-align: right;
    padding-top: 4px;
    padding-right: 10px;
}

body > footer a {
    color: #ffffff;
}

body > footer a:hover {
    text-decoration: none;
    color: #ffffff;
}

th.edit {
    color: lightblue !important;
}

.table tbody td, .table tbody tr {
    background: #fff;
}

.table-hover tbody tr:hover td {
    background-color: rgba(0,0,0,.005);
}
