/* a태그 버튼 스타일 보정 */
a.btn {
    display: flex; align-items: center; justify-content: center;
}

/* 테이블 행 전체에 포인터 표시 */
.board-list table tbody tr td,
.board-list table th .checkboxs *,
.board-list table tbody tr td.td-checkbox * {
    cursor: pointer;
}

/* 체크박스 영역은 포인터 제거 */
.board-list table tbody tr td.td-checkbox {
    cursor: default !important;
}