/* 内容分析视图（复用 shop-data.css 中的工具栏、卡片、图表样式） */
.content-view {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

/* 数据有误的指标卡片：灰色背景、不可展开 */
.chart-card-disabled {
    background: #ececec;
    box-shadow: none;
    cursor: not-allowed;
}

.chart-card-disabled .chart-card-title {
    color: #999;
    cursor: not-allowed;
    font-weight: 500;
}

.chart-card-disabled .metric-desc-title {
    color: #999;
}

.disabled-tag {
    margin-left: auto;
    background: #d5d5d5;
    color: #666;
    font-size: 12px;
    font-weight: 600;
    padding: 2px 10px;
    border-radius: 10px;
    flex-shrink: 0;
}

/* 建设中占位页 */
.page-placeholder {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.page-placeholder h2 {
    font-size: 28px;
    color: #444;
    margin-bottom: 10px;
}

.page-placeholder p {
    font-size: 14px;
    color: #999;
}
