.analytics-chart-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 24px;
    background: #ffffff;
    border-radius: 12px;
}

.analytics-stats {
    display: flex;
    gap: 32px;
    margin-bottom: 32px;
    justify-content: center;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.chart-wrapper {
    height: 300px;
    position: relative;
}

.chart-wrapper canvas {
    width: 100% !important;
    height: 100% !important;
}

/* Responsive */
@media (max-width: 768px) {
    .analytics-chart-container {
        padding: 16px;
        margin: 0 16px;
    }
    
    .analytics-stats {
        flex-direction: column;
        gap: 16px;
        margin-bottom: 24px;
    }
    
    .stat-value {
        font-size: 2rem;
    }
    
    .chart-wrapper {
        height: 250px;
    }
}