table {
    width: 100%;
    border-spacing: 0;
    color: #222;
    border-top: 1px solid #aaa;
    border-bottom: 1px solid #aaa;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

table thead th {
    padding: 8px 5px;
    border-bottom: 1px solid #aaa;
    background: #f6f6f6;
    font-weight: normal;
    text-align: center;
}

table tbody {
    font-family: 'Noto Sans KR', sans-serif;
}

table tbody tr td {
    padding: 8px 5px 8px 10px;
    cursor: pointer;
    border-bottom: 1px solid #f4f4f4;
}

table tbody tr,
table tbody tr a {
    color: #474747;
}

table tbody tr:hover,
table tbody tr:hover a {
    color: #222;
    transition-duration: .4s;
}

.board-utils {
    display: flex;
    background: #f6f6f6;
    border-bottom: 1px solid #aaa;
    padding: 8px;
    justify-content: space-between;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.search-box {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    padding: 8px 12px;
    border-radius: 4px;
    width: 250px;
    background: #fff;
}

.search-box input {
    border: none;
    outline: none;
    flex: 1;
    font-size: 16px;
    color: #333;
}

.search-box input::placeholder {
    color: #aaa;
}

.search-box svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: #333;
    stroke-width: 2;
    cursor: pointer;
}

.empty-board,
.empty-data {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    align-items: center;
    padding: 50px 0;
}

.empty-board img,
.empty-data img {
    width: 80px;
}

.empty-board span,
.empty-data {
    font-size: 15px;
    color: #c5c5c5;
}

.pagination {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: white;
    padding: 10px 20px;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.pagination a,
.pagination span {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    cursor: pointer;
}

.pagination a:hover {
    background-color: #f3e2e3;
}

.pagination .active {
    background-color: #c9171e;
    color: white;
    font-weight: bold;
    cursor: default;
}

.pagination .dots {
    pointer-events: none;
    color: #999;
}

.arrow svg {
    width: 16px;
    height: 16px;
    fill: #c9171e;
}

.arrow.disabled svg {
    fill: #bbb;
    cursor: not-allowed;
}

/* 모바일 대응 */
@media (max-width: 768px) {

    table thead th,
    table tbody tr td {
        font-size: 12px;
    }
}