/* Reset Code */
body, p, ul, ol, li, dl, dt, dd, form, table, th, td, fieldset, input, textarea, select, button, h1, h2, h3, h4, h5, h6, pre {
    margin: 0;
    padding: 0;
    font-family: "Noto Sans KR", sans-serif;
}
body {
    font-family: "Noto Sans KR", sans-serif;
    line-height: 1.5em;
    color: #000;
    font-size: 15px;
    font-weight: 400;
}
a:hover {
    text-decoration: none;
    color: #000;
}


/* Color */
.bg_primary_color {
    background-color: #3d8a58;
}
.bg_gray {
    background-color: #8c8c8c;
}
.bg_green {
    background-color: #208ba6;
}
.bg_purple {
    background-color: #7d46a7;
}

/* Common */
.hide {
    text-indent: -9999px;
    height: 1px;
    overflow: hidden;
    width: 1px;
    position: absolute;
}

/* Component */
.btn_section {
    display: flex;
    align-items: center;
    justify-content: right;
    gap: 12px;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 70px;
    height: 50px;
    padding: 0 20px;
    border: 0 none;
    color: #fff;
    line-height: 50px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
}
.btn_quickView {
    height: 25px;
    padding: 0;
    background-color: #f5f5f5;
    border: 1px solid #cbcbcb;
    color: #333;
    font-size: 13px;
    line-height: 25px;
}
.btn_list {
    width: 80px;
    padding: 0;
    background-color: #f5f5f5;
    border: 1px solid #cbcbcb;
    color: #333;
    font-size: 16px;
}

.btnRefresh  {
	background: url(../images/btn/btnRefresh_new.png) no-repeat center center;
	background-size: contain; /* 아이콘 선명도 개선 */
	border: none;
	width: 27px;
	height: 27px;
	margin-right: 9px;
	cursor: pointer;
	text-indent: -9999px; /* 텍스트 숨김 */
	overflow: hidden;
}

/* Table */
.table_top_info {
    display: flex;
    justify-content: space-between;
    margin: 20px 0 20px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
}
/* Table - Common Table */
.table_common {
    table-layout: fixed;
    width: 100%;
}
.table_common th {
    padding: 12px 0;
    background: #f1f1f1;
    border-top: 2px solid #535353;
    border-bottom: 1px solid #92969a;
    color: #000;
    font-weight: normal;
}
.table_common th:first-child {
    background-image: none;
}
.table_common td {
    padding: 12px 0;
    border-bottom: 1px solid #dde2e8;
    color: #333;
    font-size: 14px;
    text-align: center;
    word-wrap: break-word;
}
.table_common td.subject {
    padding-right: 10px;
    padding-left: 28px;
    text-align: left;
    line-height: 130%;
}
.table_common .subject a {
  text-decoration: none;     /* 밑줄 제거 (옵션) */
  color: inherit;            /* 글자색은 부모 테이블 색상 따름 */
  font-weight: 400;          /* 기본 보통 */
  transition: font-weight 0.2s ease;
}

.table_common .subject a:hover {
  font-weight: 700;          /* 마우스 올렸을 때 두껍게 */
}
/* Table - Definition Table */
.definition_table {
    table-layout: fixed;
    width: 100%;
    border-top: 2px solid #444;
}
.definition_table tr th {
    background-color: #f7f7f7;
    font-weight: 500;
    font-size: 16px;
    padding: 8px;
    border-bottom: 1px solid #e5e5e5;
    height: 40px;
}
.definition_table tr td:last-of-type {
    border-right: 0;
}
.definition_table tr td {
    font-size: 16px;
    padding: 8px;
    height: 40px;
    box-sizing: border-box;
    border-bottom: 1px solid #e5e5e5;
    border-right: 1px solid #e5e5e5;
}

/* Pagination */
.pagination {
    margin-top: 60px;
    text-align: center;
}
.pagination a {
    display: inline-block;
    width: 42px;
    height: 43px;
    margin: 0;
    padding: 0;
    border: 1px solid #c8d3e0;
    border-radius: 5px;
    color: #666;
    font-size: 14px;
    line-height: 43px;
    text-align: center;
    text-decoration: none;
}
.pagination a:hover,
.pagination a.on {
    border: 1px solid #8e8e8e;
    background-color: #8e8e8e;
    color: #fff;
}