/* ─── 게시판 목록 표 ─────────────────────────── */
.chm-table {
    width: 100%;
    border-collapse: collapse;
}

.chm-table thead th {
    background: #f5f5f5;      /* 헤더 회색 띠 */
    font-weight: 600;
    text-align: center;
    padding: 12px 0;
}

.chm-table tbody td {
    padding: 12px 8px;
    border-bottom: 1px solid #e5e5e5;
    vertical-align: middle;
    font-size: 15px;
}

/* 컬럼별 정렬 */
.chm-table .no,
.chm-table .views { text-align: center; width: 80px; }
.chm-table .date        { text-align: center; width: 140px; }
.chm-table .title       { text-align: left; }

/* 행 호버 효과 */
.chm-table tbody tr:hover {
    background: #fafafa;
}

/* 링크 컬러 */
.chm-table .title a {
    color: inherit;
    text-decoration: none;
}
.chm-table .title a:hover {
    text-decoration: underline;
}

.chm-table thead th { text-align: center !important; }