.qna-container {
    padding-top: 100px;
}

.qna-title {
    text-align: center;
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 36px;
    letter-spacing: -1px;
}

.qna-write-btn {
    background: #518dfc;
    color: #fff;
    font-weight: 400;
    border: none;
    border-radius: 5px;
    padding: 10px 22px;
    cursor: pointer;
}
.qna-write-btn:hover {
    background: #377fe7;
}

.qna-answer-status {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 8px;
    font-size: 1em;
    font-weight: 400;
    border: 1.5px solid #bbb;
    background: #fff;
    color: #444;
}
.qna-answer-status.complete {
    background: #222;
    color: #fff;
    border: 1.5px solid #222;
}

.qna-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    table-layout: fixed;
}

.table-header.title{
    text-align: left;
}

.qna-table th, .qna-table td {
    padding: 16px 0;
    text-align: center;
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 1.05rem;
}

.qna-table th {
    font-weight: 400;
    color: #222;
    border-top: 2px solid #CDCDCD;
    border-bottom: 2px solid #CDCDCD;
    background: #fff;
}

.qna-table td {
    font-weight: 400;
    color: #222;
    border-bottom: 1px solid #ececec;
    background: #fff;
    letter-spacing: -0.5px;
}

.qna-table tr:last-child td {
    border-bottom: none;
}

/* 번호 자릿수 맞추기 (앞에 0) */
.qna-table td:first-child {
    font-family: 'Noto Sans Mono', 'Noto Sans KR', monospace, sans-serif;
}


.answer-btn {
    border: 1.5px solid #bbb;
    border-radius: 8px;
    font-size: 1rem;
    padding: 5px 20px;
    background: #fff;
    color: #222;
    font-weight: 400;
    cursor: default;
}
.answer-btn.completed {
    border: 1.5px solid #666;
    background: #222222;
    color: #fff;
}
.answer-btn.waiting {
    border: 1.5px solid #bbb;
    background: #fff;
    color: #222;
}

.empty-message {
    padding: 80px 0 40px;
}

.section-header {
    margin-bottom: 0 !important;
}

.pagination-container {
    display: flex;
    justify-content: center;
    margin: 28px 0 100px 0;
}

.pagination {
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 6px;
    font-size: 1.08em;
}

.page-numbers {
    display: flex !important;
    align-items: center;
    gap: 6px;
}

.page-numbers .page-btn,
.page-numbers .page-ellipsis {
    display: inline-block !important;
    vertical-align: middle;
}