/* ========== 框架基础 ========== */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

/* ========== 表格容器（PC端） ========== */
.table-container {
    overflow-x: auto;
    margin-top: 20px;
}

table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
}

th, td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: center;
    font-size: 14px;
}

thead {
    background-color: #f9f9f9;
    font-weight: bold;
}

/* ========== 红蓝球样式 ========== */
.ball {
    display: inline-block;
    width: 28px;
    height: 28px;
    line-height: 28px;
    border-radius: 50%;
    color: #fff;
    font-weight: bold;
    margin: 2px 4px;
    font-size: 14px;
    border: 1.5px solid transparent;
    text-align: center;
}

.ball.red {
    background-color: #e03e3e;
    border-color: #cc2a2a;
}

.ball.blue {
    background-color: #2f70f2;
    border-color: #235ec9;
}

/* ========== 移动端卡片展示 ========== */
.mobile-list {
    display: none;
}

.mobile-item {
    background-color: #fff;
    margin: 10px auto;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    padding: 12px 16px;
    max-width: 480px;
    font-size: 14px;
    text-align: center;
}

.issue-number {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 10px;
    color: #333;
}

.label {
    font-weight: 600;
    margin: 10px 0 6px;
    color: #666;
}

.balls-group {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 6px;
}

/* ========== 移动端适配 ========== */
@media (max-width: 768px) {
    .table-container {
        display: none;
    }

    .mobile-list {
        display: block;
        padding: 0 10px;
    }

    /*.pagination-wrapper {*/
    /*    display: none;*/
    /*}*/

    .balls-group {
        flex-wrap: wrap;
        gap: 6px;
    }
}
