:root {
    --brand-color: #0b223a;
    --text-color: #334155;
    --border-light: #e2e8f0;
    --bg-light: #f8fafc;
}

.disclosure_page_wrapper {
    width: 100%;
    background-color: #ffffff;
    padding-top: 80px;
    box-sizing: border-box;
}

.disclosure_container {
    width: 1200px;
    margin: 0 auto;
    padding: 60px 0;
    box-sizing: border-box;
}

/* 상단 정보 필터 라인 */
.disclosure_filter_line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 15px;
}

.total_indicator {
    font-size: 0.95rem;
    color: #475569;
}
.total_indicator strong {
    color: var(--brand-color);
    font-weight: 700;
}

/* 정밀 제어 셀렉트 박스 */
.select_limit {
    padding: 6px 32px 6px 12px;
    font-size: 0.9rem;
    color: #334155;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    background-color: #ffffff;
    cursor: pointer;
    outline: none;
}
.select_limit:focus {
    border-color: var(--brand-color);
}

/* 기본 리스트 테이블 레이아웃 */
.disclosure_table_responsive {
    width: 100%;
    margin-bottom: 40px;
}
.disclosure_base_table {
    width: 100%;
    border-collapse: collapse;
    border-top: 2px solid var(--brand-color);
}
.disclosure_base_table th {
    background-color: var(--bg-light);
    border-bottom: 1px solid #cbd5e1;
    padding: 14px 10px;
    font-size: 0.95rem;
    font-weight: 700;
    color: #1e293b;
}
.disclosure_base_table td {
    border-bottom: 1px solid var(--border-light);
    padding: 14px 15px;
    font-size: 0.95rem;
    color: var(--text-color);
}

.col_num { width: 80px; }
.col_date { width: 140px; }
.col_submitter { width: 180px; }

.text_center { text-align: center; }
.text_left { text-align: left; }
.numeric_font { font-family: 'Arial', sans-serif; color: #475569; }

.disclosure_base_table td.no_data {
    text-align: center;
    padding: 80px 0;
    color: #94a3b8;
}
.disclosure_base_table td a {
    color: #0f172a;
    text-decoration: none;
    font-weight: 500;
}
.disclosure_base_table td a:hover {
    color: #2563eb;
    text-decoration: underline;
}

/* 하단 페이징 내비게이션 바 디자인 */
.disclosure_pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}
.pg_list {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 4px;
}
.pg_link {
    display: block;
    min-width: 34px;
    height: 34px;
    line-height: 32px;
    padding: 0 6px;
    font-size: 0.9rem;
    color: #475569;
    text-align: center;
    text-decoration: none;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    background-color: #ffffff;
    box-sizing: border-box;
}
.pg_link:hover {
    background-color: #f1f5f9;
    color: #0f172a;
}
.pg_item.active .pg_link {
    background-color: var(--brand-color);
    border-color: var(--brand-color);
    color: #ffffff;
    font-weight: 700;
}
.pg_link.first, .pg_link.prev, .pg_link.next, .pg_link.last {
    font-size: 0.8rem;
    background-color: var(--bg-light);
}