.evidence-feed {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.evidence-feed-item {
    background: #fff;
    border: 1px solid #e9ecef;
    border-left: 4px solid #3498db;
    border-radius: 8px;
    padding: 14px 16px;
}

.evidence-feed-item--verification {
    border-left-color: #27ae60;
}

.evidence-feed-item--news {
    border-left-color: #e67e22;
}

.evidence-feed-headline {
    margin: 0 0 6px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #2c3e50;
}

.evidence-feed-meta {
    font-size: 0.78rem;
    color: #7f8c8d;
    margin-bottom: 6px;
}

.evidence-feed-summary {
    margin: 0;
    font-size: 0.88rem;
    color: #495057;
    line-height: 1.45;
}

.evidence-feed-links {
    margin-top: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.evidence-feed-links a {
    font-size: 0.8rem;
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

.evidence-chip {
    display: inline-block;
    background: #f1f3f5;
    border: 1px solid #dee2e6;
    padding: 4px 10px;
    margin: 3px;
    border-radius: 4px;
    font-size: 0.85em;
    color: #495057;
    cursor: pointer;
}

.evidence-chip:hover {
    background: #e8f4fc;
    border-color: #3498db;
    color: #2c3e50;
}

.evidence-chip.has-proof {
    border-color: #27ae60;
    background: #eefbf3;
}

.evidence-chip--doubt-low {
    border-color: #f39c12;
    background: #fef9e7;
}

.evidence-chip--doubt-contradicted {
    border-color: #e74c3c;
    background: #fdedec;
}

.evidence-chip--doubt-queued {
    border-color: #8e44ad;
    background: #f5eef8;
    box-shadow: inset 0 0 0 1px rgba(142, 68, 173, 0.25);
}

.evidence-doubt-banner {
    background: #fff3cd;
    border: 1px solid #ffeeba;
    color: #856404;
    padding: 10px 14px;
    border-radius: 8px;
    margin-bottom: 14px;
    font-size: 0.88rem;
}

.evidence-doubt-banner--contradicted {
    background: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}

.evidence-doubt-banner--queued {
    background: #f5eef8;
    border-color: #d7bde2;
    color: #6c3483;
}

.doubt-badge {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 2px 6px;
    border-radius: 3px;
    margin-left: 6px;
    vertical-align: middle;
}

.doubt-badge--low { background: #fdebd0; color: #b9770e; }
.doubt-badge--contradicted { background: #fadbd8; color: #c0392b; }
.doubt-badge--queued { background: #ebdef0; color: #7d3c98; }

.evidence-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 100000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.evidence-modal-backdrop.is-open {
    display: flex;
}

.evidence-modal-backdrop[hidden] {
    display: none !important;
}

body.evidence-modal-open {
    overflow: hidden;
}

.evidence-modal {
    background: #fff;
    border-radius: 12px;
    max-width: 640px;
    width: 100%;
    max-height: 85vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.evidence-modal-header {
    padding: 18px 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
}

.evidence-modal-header h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #2c3e50;
}

.evidence-modal-close {
    border: none;
    background: #f1f3f5;
    border-radius: 6px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    font-size: 1.2rem;
    line-height: 1;
    color: #495057;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    pointer-events: auto;
}

.evidence-modal-footer {
    padding: 12px 20px 18px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: flex-end;
}

.evidence-modal-close--footer {
    width: auto;
    height: auto;
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 600;
}

.evidence-modal-body {
    padding: 16px 20px 20px;
    overflow-y: auto;
}

.evidence-proof-card {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 12px 14px;
    margin-bottom: 12px;
    background: #fafbfc;
}

.evidence-proof-card:last-child {
    margin-bottom: 0;
}

.evidence-relation {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 2px 8px;
    border-radius: 4px;
    margin-bottom: 8px;
}

.evidence-relation--supports,
.evidence-relation--initial_inference {
    background: #d4edda;
    color: #155724;
}

.evidence-relation--contradicts {
    background: #f8d7da;
    color: #721c24;
}

.evidence-relation--neutral,
.evidence-relation--unclear {
    background: #fff3cd;
    color: #856404;
}

.evidence-empty {
    color: #7f8c8d;
    font-style: italic;
    font-size: 0.9rem;
}

.btn-evidence-proof {
    border: none;
    background: #eefbf3;
    color: #1e8449;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 4px;
    cursor: pointer;
}

.btn-evidence-proof:hover {
    background: #d4edda;
}

.btn-evidence-proof--none {
    background: #f8f9fa;
    color: #95a5a6;
    cursor: default;
}
