/* 게시판 공통 */
table{
    line-height: 40px;
    text-align: center;
    width: 100%;
    border-collapse: collapse;
}
@media screen and (max-width:1000px) {
    table{
        width: calc(100% - 40px);
        margin: 0 auto;
        font-size: 14px;
    }
}
thead{
    border-top: 2px solid #666;
    border-bottom: 1px solid #999;
}
.post_num{
    width: 10%;
}
.post_title{
    width: 60%;
    text-align: left;
}
.post_title a{
    color: black;
    display: block;
}
.post_title a i{
    color: rgb(18, 27, 56);
    margin: 0 10px;
}
.post_date{
    width: 20%;
}
.post_view{
    width: 10%;
}
@media screen and (max-width:1000px) {
    .post_num{
        width: auto;
    }
    .post_title{
        width: 50%;
        text-overflow: ellipsis;
        overflow: hidden;
        text-align: left;
    }
    .post_date{
        width: auto;
    }
    .post_view{
        width: auto;
    }
}
tbody tr{
    cursor: pointer;
    border-bottom: 1px solid #ddd;
}
tbody tr:hover{
    background-color: #eee;
}
.board_pages{
    margin: 50px 0 100px 0;
    width: 100%;
    display: flex;
    justify-content: center;
}
.board_page{
    margin: 0 5px;
}
.board_page a,.board_left a,.board_right a{
    display: block;
    color: black;
    text-align: center;
    line-height: 30px;
    width: 30px;
}
.board_page a{
    border: 1px solid gray;
}
.board_page.active a{
    background-color: rgb(18, 27, 56);
    color: #ddd;
}
.board_btns{
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
}
.board_btn{
    font-family: "Font Awesome 5 Free",'Noto Sans KR';
    cursor: pointer;
    border: none;
    font-weight: 400;
    outline: none;
    border-radius: 5px;
    width: 75px;
    line-height: 30px;
    background-color: rgb(18, 27, 56);
    color: #ddd;
}
.search_box{
    margin: 0 auto;
    box-sizing: border-box;
    height: 30px;
}
.search_btn{
    width: 50px;
}
@media screen and (max-width:1000px) {
    .search{
        width: 100%;
        margin: 0 auto;
    }
    .board_btns{
        display: flex;
        justify-content: space-between;
        width: calc(100% - 40px);
        flex-direction: column;
        margin: 20px auto;
    }
    .board_btn{
        margin-bottom: 10px;
        width: 100%;
        line-height: 30px;
    }
    .search_box{
        width: 100%;
        margin: 0 auto;
        box-sizing: border-box;
        height: 30px;
    }
    .search_btn{
        width: 100%;
    }
}