.parser-stop-btn,
.parser-job-pending {
    width: 100%;
    min-width: 0;
    max-width: 140px;
    min-height: 38px;
    padding: 0 12px;
    border-radius: 10px;
    box-sizing: border-box;
}

.parser-stop-btn {
    border-radius: 10px;
    background: rgba(113, 74, 74, 0.22);
    border: 1px solid rgba(220, 143, 143, 0.14);
    color: #f6dede;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
    transition: background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.parser-stop-btn:hover {
    background: rgba(133, 74, 74, 0.28);
    border-color: rgba(236, 160, 160, 0.18);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), 0 6px 14px rgba(67, 24, 24, 0.18);
    transform: translateY(-1px);
}

.parser-stop-btn:focus-visible {
    outline: none;
    background: rgba(133, 74, 74, 0.28);
    border-color: rgba(236, 160, 160, 0.2);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), 0 0 0 3px rgba(133, 74, 74, 0.12);
}

.status-pill {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 0 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    border: 1px solid transparent;
}

.status-queued {
    background: rgba(245, 158, 11, 0.14);
    border-color: rgba(245, 158, 11, 0.28);
    color: #fde68a;
}

.status-insufficient_accounts {
    background: rgba(249, 115, 22, 0.14);
    border-color: rgba(251, 146, 60, 0.32);
    color: #fed7aa;
}

.status-running {
    background: rgba(59, 130, 246, 0.14);
    border-color: rgba(96, 165, 250, 0.28);
    color: #bfdbfe;
}

.status-stopped {
    background: rgba(148, 163, 184, 0.14);
    border-color: rgba(148, 163, 184, 0.28);
    color: #cbd5e1;
}

.status-finished {
    background: rgba(34, 197, 94, 0.14);
    border-color: rgba(74, 222, 128, 0.28);
    color: #bbf7d0;
}

.status-error {
    background: rgba(239, 68, 68, 0.14);
    border-color: rgba(248, 113, 113, 0.28);
    color: #fecaca;
}

.parser-job-pending {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    box-shadow: none;
    color: #cbd5e1;
}
