/* ========== 1. 双表格并排布局 ========== */
.coins-param-dual {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
    align-items: stretch;
}

.coins-param-table-wrapper {
    flex: 1;
    min-width: 400px;
    background: #0e0e18;
    border-radius: 16px;
    overflow-x: auto;
    border: 1px solid #2c2c3e;
}

/* ========== 2. 表格基础样式 ========== */
.coins-param-table {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
    font-size: 12px;
    line-height: 1.5;
    background: #0e0e18;
}

.coins-param-table th,
.coins-param-table td {
    border: 1px solid #2c2c3e;
    padding: 6px 8px;
    vertical-align: middle;
    white-space: normal;
    word-break: break-word;
}

/* ========== 3. 表头样式 ========== */
.coins-param-table th {
    color: #ffaa66 !important;
    background: #232333;
    padding: 8px 10px;
    text-align: center;
}

.coins-param-table th.th-left {
    text-align: left;
}

/* ========== 4. 单元格角色样式（合并重复声明） ========== */
/* 公共属性：左对齐、加粗、绿色文本 */
.group-cell,
.param-key {
    color: #9bff9b !important;
    text-align: left;
    font-weight: bold;
}

/* 独立属性：背景色仅 .group-cell 需要 */
.group-cell {
    background: #0e0e18;
}

.macro-value {
    color: #9bff9b;
    background: #232333;
    text-align: center !important;
}

.current-value {
    color: #e0e0e0;
    text-align: center !important;
}

/* ========== 5. 红色强调文字（合并 .mc-red 与 .mode-red） ========== */
.mc-red,
.mode-red {
    color: #ff4d4d !important;
    font-weight: bold;
}

/* ========== 6. 表格标题（caption）样式 ========== */
.coins-param-table caption {
    caption-side: top;
    background: #1e1e2c;
    padding: 10px;
    font-weight: bold;
    font-size: 1.1rem;
    color: #ffaa66;
    text-align: left;
    border-bottom: 1px solid #2c2c3e;
}

/* ========== 7. 列宽控制 ========== */
.coins-param-table {
    width: 100%;
    table-layout: auto;   /* 改为 auto，让未指定宽度的列自动分配 */
}

.coins-param-table thead tr:nth-child(2) th:nth-child(1) { width: 15%; }
.coins-param-table thead tr:nth-child(2) th:nth-child(2) { width: 25%; }
/* 不要指定第三组 列宽度，让自动分配 */



/* ========== 统一表格标题行样式（与kline.css、quantitative-value-short.css一致） ========== */
.coins-param-table .table-title-row th {
    background: #1e1e2c;
    padding: 10px;
    font-weight: bold;
    font-size: 1.1rem;
    color: #ffaa66;
    text-align: left;
    border-bottom: 1px solid #2c2c3e;
}

/* ========== 8. 冗余区域（无实际冗余样式，保留占位符） ==========
   说明：原文件无重复或废弃规则，以下为占位标记。
   若后续迁移其他文件合并，可在此处放置过时定义。
*/
/* 冗余：无 */