/* 数字资产页面样式 */
.assets-chart-box {
    position: relative;
    height: 220px;
    width: 100%;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
}

#assetsTrendSvg {
    width: 100%;
    height: 100%;
}

#assetsTrendLine {
    stroke: #4CAF50;
    stroke-width: 4;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.assets-chart-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 12px;
    color: #666;
}

.assets-chart-labels span {
    flex: 1;
    text-align: center;
}

.latest-price {
    font-size: 14px;
    font-weight: 600;
    color: #4CAF50;
}
