@charset "UTF-8";
/*  게시판 목록 페이지 스타일 파일입니다. */

.l-page {
	min-height: 900px;
	margin-top: 100px;
}

.l-page h1 {
	text-align: center;
	margin-bottom: 45px;
}

/* 카테고리 */
.category-list {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-bottom: 100px;
}

.category-item {
	width: 140px;
	height: 40px;
	/* padding: 10px 20px; */
	border-radius: 20px;
	background-color: var(--bg-gray);
	font-size: 14px;
	cursor: pointer;

	color: #333;

	text-align: center;
	font-family: Pretendard;
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}

.category-item.active {
	background-color: var(--primary);
	color: white;
	font-weight: bold;
}

/* 테이블 */
.special-list-table table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 20px;
}

.special-list-table th,
.special-list-table td {
	border: 1px solid #ddd;
	padding: 10px;
	text-align: center;
}

.special-list-table th {
	background-color: #f4f4f4;
}

.pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	margin-top: 20px;
}

.pagination-button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 4px;
	background-color: white;
	color: #333;
	font-size: 14px;
	cursor: pointer;
}

.pagination-button.active {
	background-color: var(--primary);
	color: white;
	border: none;
}

.pagination-button:disabled {
	/* background-color: #f0f0f0; */
	color: #ccc;
	cursor: not-allowed;
}

.pagination-button svg {
	width: 16px;
	height: 16px;
	fill: currentColor;
}
