/* Badge and Status Components */

.status {
    padding: 10px;
    border-radius: 4px;
    margin: 20px 0;
}

.status.running {
    background: #fff3cd;
}

.status.complete {
    background: #d4edda;
}

.confidence-badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8em;
    font-weight: bold;
}

.high-confidence {
    background: #d4edda;
    color: #155724;
}

.medium-confidence {
    background: #fff3cd;
    color: #856404;
}

.low-confidence {
    background: #f8d7da;
    color: #721c24;
}

.count-badge {
    font-size: 0.85em;
    opacity: 0.9;
}

.campaign-status-active {
    color: #28a745;
    font-weight: bold;
}

.campaign-status-paused {
    color: #ffc107;
    font-weight: bold;
}

.campaign-status-running {
    color: #007bff;
    font-weight: bold;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

#campaignSelectedCount {
    padding: 8px 12px;
    background: #e3f2fd;
    border-radius: 4px;
    font-size: 0.95em;
}
