
        .stats-container {
            background-color: var(--surface);
            border-radius: 12px;
            padding: 2rem;
            box-shadow: 0 4px 6px var(--shadow);
        }

        .stats-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
        }

        .stats-form-info {
            margin-bottom: 2rem;
        }

        .stats-summary {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .stat-card {
            background-color: var(--background);
            border-radius: 8px;
            padding: 1.5rem;
            text-align: center;
        }

        .stat-card h4 {
            color: var(--text-secondary);
            font-size: 0.875rem;
            margin-bottom: 0.5rem;
        }

        .stat-card .stat-value {
            font-size: 2rem;
            font-weight: 600;
            color: var(--primary);
        }

        .charts-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .chart-container {
            background-color: var(--background);
            border-radius: 8px;
            padding: 1.5rem;
            height: 350px;
        }

        .chart-container h4 {
            margin-bottom: 1rem;
        }

        .table-container {
            margin-top: 2rem;
            overflow-x: auto;
        }

        table {
            width: 100%;
            border-collapse: collapse;
        }

        th, td {
            padding: 1rem;
            text-align: left;
            border-bottom: 1px solid var(--border);
        }

        th {
            background-color: var(--background);
            color: var(--text-secondary);
            font-weight: 500;
        }

        tr:hover {
            background-color: var(--background);
        }

        .stats-question {
            margin-bottom: 2rem;
        }

        .stats-table {
            margin-bottom: 1rem;
        }

        .filters {
            margin-bottom: 1rem;
        }
