/* Finance Chart Styles - Fintech Dashboard Style */

.finance-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
    opacity: 0.4;
    overflow: hidden;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.06) 0%, rgba(234, 179, 8, 0.04) 100%);
    backdrop-filter: blur(1px);
}

.finance-chart {
    width: 100%;
    height: 100%;
    display: block;
    filter: blur(0.3px);
}

