/* Charts Horizontal Scroll */
.chart-scroll-container {
    display: flex;
    overflow-x: auto;
    gap: var(--space-4);
    padding-bottom: var(--space-4);
    margin-bottom: var(--space-8);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    width: 100%;
    max-width: 100%;
}

.chart-scroll-container::-webkit-scrollbar {
    display: none;
}

.chart-card {
    min-width: 160px;
    height: 160px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: var(--space-4);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    border: 1px solid var(--border-subtle);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.chart-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: var(--shadow-md), 0 0 20px var(--primary-glow);
}

.chart-card h4 {
    font-size: 1rem;
    font-weight: 700;
    z-index: 2;
    line-height: 1.3;
}

.chart-card p {
    font-size: 0.75rem;
    color: var(--text-muted);
    z-index: 2;
}

.chart-card::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background: var(--primary);
    filter: blur(40px);
    opacity: 0.15;
    border-radius: 50%;
    transition: opacity var(--transition-base);
}

.chart-card:hover::after {
    opacity: 0.25;
}
