
.board {
	/*margin-top: 30px;*/
}

.board-title {
	padding-bottom: 10px;
	margin-bottom: 20px;
	border-bottom: 1px solid #777;
	text-align: center;
}
.board-title .title {
	font-size: 1.5rem;
	font-weight: 600;
}

.board-category {
	display: flex;
	flex-direction: row;
	gap: 10px;
	height: 40px;
	margin-bottom: 20px;
}
.board-category .tab {
	flex: 1;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	border: 1px #ccc solid;
	border-radius: 25px;
	cursor: default;
}
.board-category .tab:hover {
	background-color: #dff;
	transform: translateY(-3px);
	transition: transform .3s ease;
	box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
}
.board-category .tab.on {
	background-color: var(--brand-color);
	border-color: var(--brand-color);
	color: white;
}


.board .list-search {
	margin: 40px 0 5px;
	text-align: right;
}

.board .list-search input {
	height: 30px;
	border: 1px #ccc solid;
	box-sizing: border-box;
	vertical-align: middle;
}
.board .list-search button {
	height: 30px;
	padding: 0 15px;
	border: none;
	box-sizing: border-box;
	background-color: var(--default-button-bg);
	color: white;
	border-radius: 3px;
	vertical-align: middle;
}



.board-list {

}

.board-list table {
	width: 100%;
	border-spacing: 0;
	border: none;
}

.board-list thead th {
	font-size: 0.9rem;
	font-weight: 400;
	padding: 10px 0;
	text-align: center;
	background-color: #d2f3eb;
	border-bottom: 2px var(--brand-color) solid;
	/*border-top: 1px #ccc solid;*/
	color: #444;
}

.board-list tbody td {
	padding: 15px 0;
	text-align: center;
	font-size: 0.9rem;
	font-weight: 400;
}
.board-list tbody tr:hover {
	background-color: #e5f6f6;
}
.board-list tbody td a {

}
.board-list tbody td a:hover {
	color: var(--text-emp-color);
	text-decoration: underline;
}







/* view */

.board-view {
	padding: 0 20px
}

.board-view .subject {
	padding: 15px 0;
	font-size: 1.5rem;
	font-weight: 600;
	text-align: left;
	border-bottom: 1px #dadada solid;
}
.board-view .aritcle-info {
	padding: 10px 0;
	text-align: right;
	color: #929292;
	font-size: 0.9rem;
}
.board-view .aritcle-info span {
	display: inline-block;
	vertical-align: middle;
}
.board-view .aritcle-info .sep {
	margin: 0 5px;
	color: #ddd;
	font-size: 0.8rem;
}

.board-view .content {
	margin-top: 20px;
	font-size: 0.9rem;
}


.board-view .board-foot {
	margin: 50px 0;
	text-align: center;
}

.board-view .board-foot button {
	font-size: 1rem;
	border: 1px #aaa solid;
	border-radius: 3px;
	background-color: transparent;
	box-sizing: border-box;
	min-width: 100px;
	padding: 10px 20px;
}




