.cpanalyzer-stats-dashboard {
    margin: 20px 0;
    padding: 20px;
    background: #fff;
    border: 1px solid #ccd0d4;
    border-radius: 4px;
}

.cpanalyzer-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 15px;
}

.cpanalyzer-stat-card {
    text-align: center;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 4px;
}

.cpanalyzer-stat-label {
    display: block;
    font-size: 12px;
    color: #666;
    margin-bottom: 5px;
}

.cpanalyzer-stat-value {
    display: block;
    font-size: 24px;
    font-weight: bold;
}

.cpanalyzer-upload-section,
.cpanalyzer-batch-controls,
.cpanalyzer-urls-table-section {
    margin: 20px 0;
    padding: 20px;
    background: #fff;
    border: 1px solid #ccd0d4;
    border-radius: 4px;
}

.cpanalyzer-batch-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.cpanalyzer-progress-bar {
    width: 100%;
    height: 20px;
    background: #f0f0f1;
    border-radius: 10px;
    overflow: hidden;
}

.cpanalyzer-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #0073aa, #005a87);
    transition: width 0.3s ease;
}

.cpanalyzer-progress-text {
    margin-top: 10px;
    text-align: center;
    font-weight: 500;
}

.cpanalyzer-status-success { color: #00a32a; font-weight: bold; }
.cpanalyzer-status-failed { color: #d63638; font-weight: bold; }
.cpanalyzer-status-progress { color: #0073aa; font-weight: bold; }
.cpanalyzer-status-pending { color: #dba617; font-weight: bold; }
