.scraper-status-card {
    background-color: var(--surface);
    border-radius: var(--radius);
    padding: 20px;
    display: flex;
    gap: 20px;
    align-items: center;
    box-shadow: var(--shadow);
}

.status-badge {
    padding: 6px 16px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.9rem;
}

.status-badge.active {
    background-color: #d4edda;
    color: #155724;
}

.status-badge.inactive {
    background-color: #f8d7da;
    color: #721c24;
}

.log-box {
    background-color: #1e1e1e;
    border-radius: var(--radius);
    padding: 16px;
    overflow-y: auto;
    max-height: 400px;
    font-family: monospace;
    font-size: 0.82rem;
    line-height: 1.6;
}

.log-line {
    display: block;
    white-space: pre-wrap;
    word-break: break-all;
    color: #a8ff78;
}

.log-line.error {
    color: #ff6b6b;
}

.log-line.warning {
    color: #ffd93d;
}

.log-line.success {
    color: #6bcb77;
}

.bar-chart {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 120px;
    padding: 10px 0;
}

.bar {
    flex: 1;
    background-color: var(--primary);
    border-radius: 4px 4px 0 0;
    min-height: 4px;
    position: relative;
    transition: height 0.3s ease;
}

.bar:hover {
    background-color: var(--primary-dark);
}

.bar .bar-label {
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    color: var(--text-muted);
    white-space: nowrap;
}

.bar .bar-value {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
}

.instructions-box {
    background-color: #f8f9fa;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
}

.instructions-box pre {
    background-color: #2d2d2d;
    color: #f8f8f2;
    padding: 14px;
    border-radius: var(--radius);
    overflow-x: auto;
    font-size: 0.85rem;
    margin-top: 8px;
}