@charset "UTF-8";
body{
	height: 100vh;
}

.container {
    min-height: 300px;
    padding: 100px 0;
}

.board-table {
    width: 100%;
    border-collapse: collapse;
    border-top: 1px solid #363636;
    margin: 0 auto;
}

.board-table thead tr{
	height: 55px;
}

.board-table thead th {
    padding: 15px 0;
    border-bottom: 1px solid #363636;
    background: #fff;
    font-size: 20px;
    color: #363636;
    font-weight: 500;
    text-align: center;
}

.board-table tbody td {
    padding: 15px 10px;
    border-bottom: 1px solid #363636;
    color: #666;
    text-align: center;
}

.board-table tbody td.title-cell {
    text-align: left;
    padding-left: 30px;
    height: 80px;
    font-size: 20px;
}

.board-table tbody td.title-cell a {
    color: #363636;
    text-decoration: none;
    font-size: 20px;
}

.board-table tbody td.title-cell a:hover {
    text-decoration: underline;
}

.board-table .news-write-date{
    color: #747474;
}

/* 검색 영역 스타일 */
.board_search {
    text-align: center;
    margin-bottom: 100px;
}

.search-container {
    display: inline-flex;
    align-items: center;
}

.search-select {
	display: none;
    height: 40px;
    padding: 0 10px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-size: 14px;
}

.search-input {
    width: 276px;
    height: 37px;
    padding: 0 15px;
    font-size: 14px;
    border: 1px solid #000;
}

.search-btn {
	width: 102px;
    height: 37px;
    text-align: center;
    background: var(--yellow);
    border: none;
    font-size: 16px;
    color: #363636;
    cursor: pointer;
    margin-left: 10px;
}

/* 페이지네이션 스타일 */
.board_Pagination {
    margin: 50px 0px;
    text-align: center;
}

.board_Pagination a {
    display: inline-block;
    min-width: 30px;
    height: 30px;
    margin: 0 2px;
    line-height: 30px;
    vertical-align: middle;
    border: 1px solid #ddd;
    text-align: center;
    text-decoration: none;
    color: #666;
}

.board_Pagination .pageMove{
	cursor: pointer;
	border: none;
}

.board_Pagination a.on {
    background: none;
    border: none;
    color: var(--yellow);
    font-weight: bold;
}

.board_Pagination a.first,
.board_Pagination a.prev,
.board_Pagination a.next,
.board_Pagination a.last {
    position: relative;
    line-height: 30px;
    
}

.board_Pagination a.first::before {
    content: "<<";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-indent: 0;
}

.board_Pagination a.prev::before {
    content: "<";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-indent: 0;
}

.board_Pagination a.next::before {
    content: ">";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-indent: 0;
}

.board_Pagination a.last::before {
    content: ">>";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-indent: 0;
}

.no-data {
    text-align: center;
    padding: 50px 0;
    color: #888;
}

@media(max-width: 1024px) {
	colgroup col:first-child { width: calc(100% - 100px) !important; }
	colgroup col:last-child { width: 100px !important; }
	.board-table thead th { font-size: 18px; }
	
	.board-table tbody td.title-cell a { font-size: 16px; }
}