/* 自定义样式（如有需要） */

/* 防止图表 Canvas 元素意外拉伸 */
canvas {
    max-width: 100% !important;
    max-height: 100% !important;
    display: block;
}

/* 图表容器固定尺寸 */
.chart-container {
    position: relative;
    height: 300px;
    max-height: 300px;
    overflow: hidden;
}
