body {
	font-family: 'Noto Sans KR', sans-serif;
	background: #f7f9fc;
	margin: 0;
	overflow: auto;
}

/* 상단 게시판종류 탭선택바 */

.tabs {
	display: flex;
	gap: 10px;
	margin: 20px;
}

.tabs button {
	padding: 10px 16px;
	background: #fff;
	border: 1px solid #ccc;
	border-radius: 6px;
	cursor: pointer;
}

.tabs .active {
	background: #0066ff;
	color: #fff;
	border-color: #0066ff;
}

.tab-item {
	display: none;
	width: 90%;
	margin: auto;
}

.tab-item.active {
	display: block;
}

.filter {
	background: #fff;
	padding: 15px;
	border-radius: 8px;
	margin-bottom: 20px;
	display: flex;
	gap: 10px;
	align-items: center;
}

.filter select, .filter input {
	padding: 6px 10px;
	border: 1px solid #ccc;
	border-radius: 4px;
}

.filter button {
	padding: 6px 12px;
	border: 1px solid #007bff;
	background: #fff;
	color: #007bff;
	border-radius: 4px;
	cursor: pointer;
}

.filter .search {
	background: #007bff;
	color: #fff;
}

/* 기본정보 */
.info-table {
	width: 100%;
	border-collapse: collapse;
	background: #fff;
	border: 1px solid #ccc;
	margin-bottom: 20px;
}

th, td {
	padding: 10px;
	border: 1px solid #ddd;
	text-align: center;
	font-size: 14px;
}

th {
	background: #f1f1f1;
}

thead {
	font-weight: bold;
}

.map-section1 {
	display: flex;
	gap: 20px;
	align-items: flex-start;
}

.map {
	width: 50%;
	height: 400px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	font-weight: bold;
	color: #333;
	border: 1px solid #ccc;
}

.map img {
	width: 100%;
	height: 100%;
}

.legend {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.color-box {
	display: inline-block;
	width: 16px;
	height: 16px;
	margin-right: 5px;
	border: 1px solid #000;
	vertical-align: middle;
}

.yellow {
	background: #f5f500;
}

.blue {
	background: #d9e5ff;
}

.purple {
	background: #d9d9f5;
}

.pink {
	background: #f5d9e5;
}

.border {
	background: #fff;
	border: 1px solid #000;
}

.disclaimer {
	margin-top: 20px;
	color: #777;
	font-size: 14px;
}

table {
	width: 100%;
	border-collapse: collapse;
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
}

.title {
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 15px;
	color: #0044cc;
}

.pagination {
	margin-top: 20px;
	text-align: center;
}

.pagination button {
	padding: 6px 12px;
	margin: 0 4px;
	border: 1px solid #ccc;
	background: #fff;
	border-radius: 4px;
	cursor: pointer;
}

.pagination .active {
	background: #007bff;
	color: #fff;
	border-color: #007bff;
}