/* Modern Premium CSS Stylesheet for Crypto Fact Checker */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --bg-space: #070913;
    --bg-card: rgba(16, 20, 38, 0.6);
    --bg-card-hover: rgba(22, 28, 54, 0.8);
    --border-glow: rgba(99, 102, 241, 0.15);
    --border-glow-focus: rgba(99, 102, 241, 0.4);
    
    --primary: #6366f1;
    --primary-glow: rgba(99, 102, 241, 0.4);
    --secondary: #10b981;
    
    /* Neon Audit Badges */
    --color-confirmed: #10b981;
    --color-partially: #06b6d4;
    --color-contradicted: #ef4444;
    --color-notfound: #64748b;
    --color-unverifiable: #f59e0b;
    
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-space);
    background-image: 
        radial-gradient(at 0% 0%, rgba(99, 102, 241, 0.08) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(16, 185, 129, 0.05) 0px, transparent 50%);
    color: var(--text-main);
    font-family: var(--font-body);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.5;
}

/* Beautiful Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-space);
}
::-webkit-scrollbar-thumb {
    background: rgba(99, 102, 241, 0.25);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(99, 102, 241, 0.5);
}

/* Glassmorphism Layout Grid */
.app-container {
    display: grid;
    grid-template-columns: 320px 1fr;
    min-height: 100vh;
}

/* Sidebar Drawer Style */
aside {
    background: rgba(10, 12, 26, 0.9);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-height: 100vh;
    position: sticky;
    top: 0;
    z-index: 10;
}

.brand-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 1.5rem;
}

.brand-icon {
    font-size: 1.75rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: -0.025em;
    background: linear-gradient(135deg, #ffffff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sidebar-title {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    font-weight: 600;
}

.sidebar-history-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.history-clear-btn {
    border: 1px solid rgba(239, 68, 68, 0.24);
    background: rgba(239, 68, 68, 0.08);
    color: #fca5a5;
    border-radius: 7px;
    padding: 0.28rem 0.55rem;
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.history-clear-btn:hover:not(:disabled) {
    background: rgba(239, 68, 68, 0.16);
    border-color: rgba(239, 68, 68, 0.42);
    color: #fecaca;
}

.history-clear-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.history-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    overflow-y: auto;
    flex: 1;
}

.history-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.history-item:hover, .history-item.active {
    background: rgba(99, 102, 241, 0.1);
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-2px);
}

.history-item-title {
    font-size: 0.875rem;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.history-item-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.history-score-badge {
    padding: 0.1rem 0.4rem;
    border-radius: 4px;
    font-weight: 600;
}

/* Main Workspace View */
main.workspace {
    padding: 3rem 4rem;
    max-height: 100vh;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-title h1 {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #ffffff 30%, #a5b4fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.25rem;
}

.header-title p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* Glass Card Container */
.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: 20px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    padding: 2rem;
    transition: var(--transition-smooth);
}

.glass-card:hover {
    border-color: rgba(99, 102, 241, 0.25);
    box-shadow: 0 12px 40px 0 rgba(99, 102, 241, 0.05);
}

.trade-editor-panel {
    background: rgba(16, 20, 38, 0.42);
    border: 1px solid rgba(99, 102, 241, 0.16);
    border-radius: 16px;
    padding: 1.25rem;
    margin-bottom: 2rem;
}

.trade-editor-header {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.trade-editor-header h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 0.15rem;
}

.trade-editor-header p {
    color: var(--text-muted);
    font-size: 0.82rem;
}

.trade-editor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
}

.trade-editor-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 1rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.trade-editor-title {
    grid-column: 1 / -1;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--text-main);
}

.trade-editor-card label {
    display: grid;
    gap: 0.35rem;
    color: var(--text-muted);
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.trade-input {
    width: 100%;
    background: rgba(7, 9, 19, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 0.55rem 0.65rem;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 0.9rem;
}

.trade-input:focus {
    outline: none;
    border-color: rgba(99, 102, 241, 0.5);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.12);
}

.trade-source {
    min-height: 1rem;
    color: var(--text-muted);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.35;
    text-transform: none;
}

.trade-source.from-text {
    color: var(--color-confirmed);
}

.trade-source.manual {
    color: var(--color-unverifiable);
}

.trade-source.missing {
    color: var(--color-notfound);
}

/* Input Tab Bar */
.tab-bar {
    display: flex;
    gap: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 1.5rem;
}

.tab-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
}

.tab-btn.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

/* Fields & Controls */
.input-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

textarea {
    width: 100%;
    min-height: 180px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glow);
    border-radius: 12px;
    color: var(--text-main);
    padding: 1rem;
    font-family: var(--font-body);
    font-size: 0.925rem;
    resize: vertical;
    transition: var(--transition-smooth);
}

textarea:focus, input[type="text"]:focus {
    outline: none;
    border-color: var(--border-glow-focus);
    box-shadow: 0 0 15px var(--primary-glow);
    background: rgba(255, 255, 255, 0.04);
}

input[type="text"] {
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glow);
    border-radius: 12px;
    color: var(--text-main);
    padding: 1rem;
    font-family: var(--font-body);
    font-size: 0.925rem;
    transition: var(--transition-smooth);
}

.submit-section {
    display: flex;
    justify-content: flex-end;
    margin-top: 1.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #4f46e5);
    border: none;
    border-radius: 12px;
    color: white;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.85rem 1.75rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.5);
}

/* Stepper Logging Animation */
.progress-container {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.01);
    transition: var(--transition-smooth);
}

.step-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid var(--border-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: var(--text-muted);
    position: relative;
}

.step-item.active .step-icon {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 0 10px var(--primary-glow);
}

.step-item.active .step-icon::after {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    border-radius: 50%;
    border: 1px solid var(--primary);
    animation: ripple 1.5s infinite ease-out;
}

.step-item.completed .step-icon {
    border-color: var(--secondary);
    background: var(--secondary);
    color: white;
}

.step-text {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.step-item.active .step-text {
    color: var(--text-main);
    font-weight: 500;
}

.step-item.completed .step-text {
    color: var(--text-muted);
    text-decoration: line-through;
}

@keyframes ripple {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.4); opacity: 0; }
}

/* Dashboard Report Grid Layout */
.report-dashboard {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.grid-summary {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 2rem;
}

/* circular progress gauge */
.gauge-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
}

.gauge-svg-container {
    position: relative;
    width: 150px;
    height: 150px;
}

.gauge-circle-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.05);
    stroke-width: 12;
}

.gauge-circle-fill {
    fill: none;
    stroke-width: 12;
    stroke-linecap: round;
    transform: rotate(-90deg);
    transform-origin: 50% 50%;
    transition: stroke-dashoffset 1s ease-in-out;
}

.gauge-score-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
}

.gauge-label {
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

/* Summary narrative */
.summary-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.summary-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
}

.summary-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #cbd5e1;
}

/* Quick Metrics Row */
.metrics-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.metric-card {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.metric-card-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

.metric-card-value {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
}

/* Expanding Claims Table */
.claims-section-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.claims-table-wrapper {
    overflow-x: auto;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

th {
    background: rgba(255, 255, 255, 0.02);
    padding: 1rem 1.25rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

td {
    padding: 1.15rem 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    font-size: 0.875rem;
    vertical-align: middle;
}

.claim-row-header {
    cursor: pointer;
    transition: var(--transition-smooth);
}

.claim-row-header:hover {
    background: rgba(255, 255, 255, 0.02);
}

.priority-badge {
    padding: 0.15rem 0.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.7rem;
    text-transform: uppercase;
}

.priority-badge.high { background: rgba(239, 68, 68, 0.15); color: #f87171; border: 1px solid rgba(239, 68, 68, 0.3); }
.priority-badge.medium { background: rgba(245, 158, 11, 0.15); color: #fbbf24; border: 1px solid rgba(245, 158, 11, 0.3); }
.priority-badge.low { background: rgba(99, 102, 241, 0.15); color: #818cf8; border: 1px solid rgba(99, 102, 241, 0.3); }

.verdict-badge {
    padding: 0.2rem 0.6rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.725rem;
    text-transform: uppercase;
    display: inline-block;
}

.verdict-badge.confirmed { background: rgba(16, 185, 129, 0.15); color: var(--color-confirmed); border: 1px solid rgba(16, 185, 129, 0.3); }
.verdict-badge.partially_confirmed { background: rgba(6, 182, 212, 0.15); color: var(--color-partially); border: 1px solid rgba(6, 182, 212, 0.3); }
.verdict-badge.contradicted { background: rgba(239, 68, 68, 0.15); color: var(--color-contradicted); border: 1px solid rgba(239, 68, 68, 0.3); }
.verdict-badge.not_found { background: rgba(100, 116, 139, 0.15); color: var(--color-notfound); border: 1px solid rgba(100, 116, 139, 0.3); }
.verdict-badge.unverifiable { background: rgba(245, 158, 11, 0.15); color: var(--color-unverifiable); border: 1px solid rgba(245, 158, 11, 0.3); }

.confidence-bar-container {
    width: 80px;
    height: 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.confidence-bar {
    height: 100%;
    background: var(--primary);
    border-radius: 3px;
}

/* Detail expanding row drawer */
.claim-row-detail {
    background: rgba(7, 9, 19, 0.6);
}

.detail-container {
    padding: 1.5rem 2rem;
    border-left: 3px solid var(--primary);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.detail-notes-section p {
    font-size: 0.9rem;
    color: #cbd5e1;
    line-height: 1.6;
}

.evidence-items-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.evidence-item-card {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.evidence-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.evidence-item-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-main);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.evidence-item-title:hover {
    color: var(--primary);
}

.tier-badge {
    padding: 0.1rem 0.4rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.65rem;
    text-transform: uppercase;
}

.tier-badge.A { background: rgba(16, 185, 129, 0.2); color: #34d399; }
.tier-badge.B { background: rgba(6, 182, 212, 0.2); color: #22d3ee; }
.tier-badge.C { background: rgba(100, 116, 139, 0.2); color: #94a3b8; }

.evidence-item-snippet {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Risks and Recommendations */
.findings-double-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.findings-panel h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.list-panel {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.list-panel-item {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.list-panel-item.risk {
    border-left: 3px solid var(--color-contradicted);
}

.list-panel-item.recommendation {
    border-left: 3px solid var(--color-partially);
}

.list-panel-icon {
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.list-panel-text {
    font-size: 0.875rem;
    color: #e2e8f0;
}

/* Verifier Status Progress Widget styling */
.verifier-status-widget {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem;
    background: rgba(16, 20, 38, 0.4);
    border: 1px solid rgba(99, 102, 241, 0.1);
    border-radius: 16px;
    box-shadow: inset 0 0 12px rgba(255, 255, 255, 0.02);
    width: 100%;
}

.current-verifier-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(16, 185, 129, 0.05));
    border: 1px solid rgba(99, 102, 241, 0.25);
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.2), 0 0 40px rgba(99, 102, 241, 0.05);
    animation: pulseGlow 2s infinite ease-in-out;
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 4px 20px rgba(99, 102, 241, 0.2), 0 0 40px rgba(99, 102, 241, 0.05); }
    50% { box-shadow: 0 4px 25px rgba(99, 102, 241, 0.35), 0 0 50px rgba(99, 102, 241, 0.15); border-color: rgba(99, 102, 241, 0.4); }
}

.verifier-history-container {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    margin-top: 0.5rem;
    min-height: 40px;
    width: 100%;
}

.history-verifier-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    transition: var(--transition-smooth);
}

/* Three last verifiers in fade (fading backwards chronologically) */
.history-verifier-item:nth-child(1) { opacity: 0.35; transform: scale(0.92); }
.history-verifier-item:nth-child(2) { opacity: 0.55; transform: scale(0.96); }
.history-verifier-item:nth-child(3) { opacity: 0.8; transform: scale(1.0); }

/* Live claims preview cards and icons */
.live-claim-card {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 0.9rem 1.1rem;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    transition: var(--transition-smooth);
}

.live-claim-card:hover {
    border-color: rgba(99, 102, 241, 0.15);
    background: rgba(255, 255, 255, 0.025);
}

.live-claim-text {
    font-size: 0.875rem;
    color: var(--text-main);
    font-weight: 500;
    line-height: 1.4;
}

.live-verifier-icon {
    font-size: 1.1rem;
    padding: 0.2rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.live-verifier-icon.active {
    opacity: 1.0 !important;
    background: rgba(99, 102, 241, 0.2);
    border-color: rgba(99, 102, 241, 0.6);
    transform: scale(1.22);
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.4);
}

.live-claim-card.verified {
    background: rgba(16, 185, 129, 0.02);
    border-color: rgba(16, 185, 129, 0.15);
}

.live-claim-card.contradicted-card {
    background: rgba(239, 68, 68, 0.02);
    border-color: rgba(239, 68, 68, 0.15);
}


