/* ─── Badge de desatualizado ─────────────────────────────────────────────── */

.pnia-module-item--stale .pnia-module-status {
    display: none;
}

.pnia-sc-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 3px 8px 3px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    background-color: #fff7ed;
    color: #c2410c;
    border: 1px solid #fed7aa;
    white-space: nowrap;
}

.pnia-sc-badge__label {
    pointer-events: none;
}

/* Botão de ignorar individual (✕) */
.pnia-sc-ignore-one {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: #fed7aa;
    color: #c2410c;
    font-size: 10px;
    font-weight: 700;
    cursor: pointer;
    line-height: 1;
    transition: background 0.15s;
}

.pnia-sc-ignore-one:hover {
    background: #f97316;
    color: #fff;
}

.pnia-sc-ignore-one:disabled {
    opacity: 0.5;
    cursor: wait;
}

/* Destaque sutil no card */
.pnia-module-item--stale {
    border-left: 3px solid #f97316 !important;
}

/* ─── Barra "Ignorar todos" ─────────────────────────────────────────────── */

#pnia-sc-ignore-all-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 16px;
    margin-bottom: 12px;
    background: #fff7ed;
    border: 1px solid #fed7aa;
    border-radius: 8px;
    font-size: 13px;
    color: #92400e;
}

#pnia-sc-ignore-all-btn {
    padding: 4px 14px;
    border: 1px solid #f97316;
    border-radius: 6px;
    background: #fff;
    color: #c2410c;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}

#pnia-sc-ignore-all-btn:hover {
    background: #f97316;
    color: #fff;
}

#pnia-sc-ignore-all-btn:disabled {
    opacity: 0.5;
    cursor: wait;
}
