/* 继承 charts.css 的整体样式 */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

header {
    background-color: #333;
    color: white;
    padding: 10px;
    text-align: center;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 10px;
}

nav ul li a {
    color: white;
    text-decoration: none;
}

/* 表格样式 */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background-color: white;
}

table th, table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
    cursor: pointer;
}

table th {
    background-color: #333;
    color: white;
}

table tr:nth-child(even) {
    background-color: #f9f9f9;
}

table tr:hover {
    background-color: #f1f1f1;
}

/* 字体大小设置，避免不必要的加粗 */
table td {
    font-size: 1rem;
}

/* 盈亏金额的颜色 */
.positive {
    color: green;
}

.negative {
    color: red;
}

.neutral {
    color: black;
}

/* 结果类型的颜色设置 */
.partial {
    color: blue;
}

/* 当前状态为进行中时的斜体显示 */
.italic {
    font-style: italic;
}

/* 分页样式 */
.pagination {
    text-align: center;
    margin-top: 20px;
}

.pagination button {
    padding: 10px 20px;
    margin: 5px;
    border: none;
    background-color: #333;
    color: white;
    cursor: pointer;
    border-radius: 5px;
}

.pagination button.active {
    background-color: #555;
}

.pagination button:hover {
    background-color: #777;
}

/* 移除了对特定列的加粗处理 */
