/* ========== 做空模式实时指标卡片 ========== */
.dynamic-card-short {
    margin-bottom: 30px;
    background: #1a1a2a;
    border-radius: 10px;
    border-left: 4px solid #ff4d4d;
    padding: 15px 20px;
}

.dynamic-card-short .dynamic-card-title {
    color: #ffd503 !important;
    margin-top: 0;
    margin-bottom: 15px;
}

/* 子标题样式 */
.sub-section-title-short {
    color: #d2e809;
    font-size: 1.0rem;
    margin-top: 10px;
    margin-bottom: 10px;
    font-weight: bold;
}

/* 网格容器布局 */
.dynamic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 8px;
}

/* 网格内子标题（inline 覆盖） */
.dynamic-grid .sub-section-title-short {
    display: inline;
    margin: 0;
    line-height: inherit;
}

/* 网格内 strong 标签样式 */
.dynamic-grid strong {
    font-size: 1.0rem;
    font-weight: bold;
}

/* 卡片内动态数值 */
.dynamic-card-short .dynamic-value {
    color: #ff9f7a;
    font-size: 0.75rem;
}

/* 公共状态类 */
.status-positive {
    color: #2ecc71 !important;
}

.status-negative {
    color: #ff0000 !important;
}

.text-light {
    color: #eaeef2;
}

/* L1/L2 分组标题（统一风格） */
.l1-group-title,
.l2-group-title {
    font-size: 0.9rem;
    color: #d2e809;
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 10px;
}

/* ========== 冗余区域（以下为历史保留规则，未删除） ========== */
/* 冗余：无重复或废弃规则，此处预留 */