/* ── Override Review Center CSS (Light Theme) ── */

.review-page-wrapper {
    background: var(--bg-page-gradient);
    min-height: 100vh;
    padding-top: 100px; /* offset navbar */
    padding-bottom: 60px;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--text-heading);
    box-sizing: border-box;
}

.main-content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Common Components ── */
.card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--card-radius);
    box-shadow: var(--card-shadow);
    padding: 24px;
    margin-bottom: 24px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.content-card {
    border-top: 4px solid #4f46e5;
}
.justification-card {
    border-top: 4px solid #7c3aed;
}
.statistics-card {
    border-top: 4px solid #0f172a;
}
.decision-form-card {
    border-top: 4px solid #10b981;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-heading);
    margin-top: 0;
    margin-bottom: 8px;
}

.card-subtitle {
    font-size: 0.88rem;
    color: var(--text-subheading);
    margin-bottom: 20px;
}

.card-section-title {
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-section-title);
    margin: 0 0 16px 0;
    border-bottom: 1px solid var(--divider);
    padding-bottom: 8px;
}

/* ── Header Area ── */
.page-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 16px;
}

.page-title {
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--text-heading);
    margin: 0 0 8px 0;
    letter-spacing: -0.02em;
}

.page-subtitle {
    font-size: 0.95rem;
    color: var(--text-subheading);
    margin: 0;
}

.btn-reset {
    background: #ffffff;
    border: 1px solid var(--card-border);
    border-radius: 8px;
    padding: 10px 16px;
    color: #475569;
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-reset:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    color: #0f172a;
    transform: translateY(-1px);
}

.btn-reset:active {
    transform: translateY(0);
}

/* ── Stats Summary Row ── */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 36px;
}

.stat-card {
    background: linear-gradient(135deg, #ffffff 0%, rgba(99, 102, 241, 0.02) 100%);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.03);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(99, 102, 241, 0.06);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #3b82f6;
}

.stat-card.pending {
    background: linear-gradient(135deg, #ffffff 0%, rgba(245, 158, 11, 0.02) 100%);
}

.stat-card.pending::before {
    background: #f59e0b; /* orange */
}

.stat-card.completed {
    background: linear-gradient(135deg, #ffffff 0%, rgba(16, 185, 129, 0.02) 100%);
}

.stat-card.completed::before {
    background: #10b981; /* green */
}

.stat-value {
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 4px;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-subheading);
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

/* ── Assignments List View ── */
.section-heading {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0f172a;
    margin: 32px 0 20px 0;
    border-left: 4px solid #7c3aed;
    padding-left: 12px;
}

.assignments-list-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.assignment-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.assignment-card:hover {
    transform: translateY(-4px) scale(1.005);
    box-shadow: 0 12px 24px -10px rgba(124, 58, 237, 0.12), 0 4px 12px -2px rgba(0, 0, 0, 0.04);
    border-color: rgba(124, 58, 237, 0.3);
}

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

.assignment-id {
    font-weight: 700;
    color: #0f172a;
    font-size: 1.1rem;
    letter-spacing: -0.01em;
}

.badges-row {
    display: flex;
    gap: 8px;
    align-items: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    font-size: 0.72rem;
    font-weight: 700;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge.type-text {
    background: rgba(79, 70, 229, 0.06);
    color: #4f46e5;
    border: 1px solid rgba(79, 70, 229, 0.15);
}

.badge.type-image {
    background: rgba(124, 58, 237, 0.06);
    color: #7c3aed;
    border: 1px solid rgba(124, 58, 237, 0.15);
}

.badge.status-pending {
    background: rgba(245, 158, 11, 0.06);
    color: #b45309;
    border: 1px solid rgba(245, 158, 11, 0.15);
}

.badge.status-completed {
    background: rgba(16, 185, 129, 0.06);
    color: #047857;
    border: 1px solid rgba(16, 185, 129, 0.15);
}

.assignment-card-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.content-preview {
    font-size: 0.92rem;
    color: #334155;
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.justification-preview {
    font-size: 0.88rem;
    color: #475569;
    background: #f8fafc;
    border-left: 3px solid #7c3aed;
    padding: 10px 14px;
    border-radius: 0 6px 6px 0;
    margin: 0;
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    box-sizing: border-box;
}

.justification-label {
    font-weight: 700;
    color: #0f172a;
    margin-right: 4px;
}

.justification-text {
    font-style: italic;
}

.assignment-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 14px;
    border-top: 1px solid #f1f5f9;
    font-size: 0.82rem;
    color: #64748b;
    font-weight: 500;
}

.action-required-link {
    color: #7c3aed;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: transform 0.2s ease;
}

.assignment-card:hover .action-required-link {
    transform: translateX(4px);
}

.loading-state, .empty-state {
    text-align: center;
    padding: 40px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--card-radius);
    color: var(--text-subheading);
    font-size: 0.95rem;
}

/* ── Single Assignment View ── */
.hidden {
    display: none !important;
}

.back-navigation {
    margin-bottom: 24px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #475569;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.back-link:hover {
    color: #4f46e5;
}

.back-link .arrow-icon {
    margin-right: 6px;
    transition: transform 0.2s ease;
}

.back-link:hover .arrow-icon {
    transform: translateX(-4px);
}

.assignment-layout-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 24px;
    align-items: start;
}

@media (max-width: 992px) {
    .assignment-layout-grid {
        grid-template-columns: 1fr;
    }
}

.assignment-info-header-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
}

.assignment-info-header-card .card-title {
    margin: 0;
}

/* ── Content Card Styles ── */
.text-content-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 16px 20px;
    max-height: 300px;
    overflow-y: auto;
    box-sizing: border-box;
}

.text-content-box p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.65;
    color: #334155;
    white-space: pre-wrap;
}

.image-content-box {
    text-align: center;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    max-height: 400px;
    overflow: hidden;
}

.image-content-box img {
    max-width: 100%;
    max-height: 360px;
    object-fit: contain;
    border-radius: 4px;
}

/* ── Justification Card ── */
.justification-quote {
    margin: 0;
    padding: 16px 20px;
    background: rgba(124, 58, 237, 0.03);
    border-left: 4px solid #7c3aed;
    border-radius: 0 8px 8px 0;
}

.justification-quote p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #475569;
    font-style: italic;
}

/* ── Crowd Stats Card ── */
.crowd-stats-display {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #334155;
}

.vote-ratio-bar {
    display: flex;
    height: 12px;
    border-radius: 9999px;
    overflow: hidden;
    background: #f1f5f9;
}

.ratio-segment {
    height: 100%;
    transition: width 0.3s ease;
}

.ratio-segment.ai-segment {
    background: #dc2626; /* red */
}

.ratio-segment.real-segment {
    background: #166534; /* green */
}

.vote-ratio-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.82rem;
    font-weight: 500;
}

.label-ai {
    color: #dc2626;
}

.label-real {
    color: #166534;
}

/* ── Reviewer Action Form ── */
.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-section-title);
    margin-bottom: 10px;
}

.required {
    color: #ef4444;
}

/* ── Custom Decision Card Radios ── */
.decision-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.decision-radio-card {
    display: block;
    cursor: pointer;
    position: relative;
}

.decision-radio-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.radio-card-content {
    display: flex;
    align-items: flex-start;
    padding: 16px;
    background: #ffffff;
    border: 1px solid var(--card-border);
    border-radius: 12px;
    transition: all 0.2s ease;
    gap: 12px;
}

.radio-indicator {
    width: 18px;
    height: 18px;
    border: 2px solid #cbd5e1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.radio-indicator::after {
    content: '';
    width: 8px;
    height: 8px;
    background: transparent;
    border-radius: 50%;
    display: block;
    transition: all 0.2s ease;
}

.radio-label-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.main-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-heading);
}

.desc-label {
    font-size: 0.8rem;
    color: var(--text-subheading);
    line-height: 1.3;
}

/* Hover and Focus States */
.decision-radio-card:hover .radio-card-content {
    border-color: #94a3b8;
    background: #f8fafc;
}

/* Active Decision Cards Checked States */

/* AI Radio Card Specific Styles */
#decisionAI:checked ~ .radio-card-content {
    border-color: #fca5a5;
    background: #fff5f5;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

#decisionAI:checked ~ .radio-card-content .radio-indicator {
    border-color: #dc2626;
}

#decisionAI:checked ~ .radio-card-content .radio-indicator::after {
    background: #dc2626;
}

/* Real Radio Card Specific Styles */
#decisionReal:checked ~ .radio-card-content {
    border-color: #a7f3d0;
    background: #f0fdf4;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

#decisionReal:checked ~ .radio-card-content .radio-indicator {
    border-color: #10b981;
}

#decisionReal:checked ~ .radio-card-content .radio-indicator::after {
    background: #10b981;
}

/* Justification Textarea */
.textarea-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.textarea-header .form-label {
    margin-bottom: 0;
}

.char-counter {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-subheading);
    transition: color 0.2s ease;
}

.char-counter.valid {
    color: #166534;
    font-weight: 600;
}

textarea#decisionJustification {
    width: 100%;
    border: 1px solid var(--card-border);
    border-radius: 8px;
    padding: 12px 14px;
    font-family: inherit;
    font-size: 0.92rem;
    color: #334155;
    background: #ffffff;
    resize: vertical;
    box-sizing: border-box;
    line-height: 1.5;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

textarea#decisionJustification:focus {
    outline: none;
    border-color: #7c3aed;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.textarea-hint {
    font-size: 0.78rem;
    color: var(--text-subheading);
    margin: 6px 0 0 0;
}

/* Submit Review Button */
.btn-submit {
    width: 100%;
    background: var(--btn-primary-bg);
    color: var(--btn-primary-text);
    border: none;
    border-radius: 8px;
    padding: 14px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: var(--btn-primary-shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-submit:hover:not(:disabled) {
    opacity: 0.95;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(79, 70, 229, 0.4);
}

.btn-submit:active:not(:disabled) {
    transform: translateY(0);
}

.btn-submit:disabled {
    background: #cbd5e1;
    color: #94a3b8;
    box-shadow: none;
    cursor: not-allowed;
    transform: none;
}

/* Spinner */
.spinner {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #ffffff;
    animation: spin 0.8s linear infinite;
    display: inline-block;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.media-external-link {
    color: #4f46e5;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.2s ease;
}

.media-external-link:hover {
    color: #7c3aed;
}

/* ── User Eligibility Summary Styling (Compact Ratings) ── */
.user-eligibility-summary {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.eligibility-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #475569;
}

.compact-rating-chip {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
    background: #f1f5f9;
    color: #475569;
    border: 1px solid #e2e8f0;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: all 0.2s ease;
}

.compact-rating-chip strong {
    font-weight: 800;
}

.compact-rating-chip.eligible {
    background: rgba(16, 185, 129, 0.06);
    color: #047857;
    border-color: rgba(16, 185, 129, 0.15);
}

.compact-rating-chip.ineligible {
    background: rgba(239, 68, 68, 0.06);
    color: #b91c1c;
    border-color: rgba(239, 68, 68, 0.15);
}

.rating-info-tag {
    font-size: 0.7rem;
    font-weight: 700;
    color: #7c3aed;
    background: rgba(124, 58, 237, 0.06);
    border: 1px solid rgba(124, 58, 237, 0.15);
    padding: 2px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

/* ── Media and URL Previews Styling ── */

.assignment-media-preview-container {
    width: 100%;
    margin-top: 4px;
    margin-bottom: 4px;
}

.review-image-preview-wrapper {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    max-height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f8fafc;
}

.review-card-img-preview {
    width: 100%;
    height: 100%;
    max-height: 180px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.assignment-card:hover .review-card-img-preview {
    transform: scale(1.02);
}

.review-url-preview-loading {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px;
    background: #f8fafc;
    border: 1px dashed #cbd5e1;
    border-radius: 10px;
    color: #64748b;
    font-size: 0.85rem;
    font-weight: 500;
}

.spinner-small {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(124, 58, 237, 0.15);
    border-radius: 50%;
    border-top-color: #7c3aed;
    animation: spin 0.8s linear infinite;
}

.review-url-preview-card {
    display: flex;
    gap: 16px;
    padding: 14px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    align-items: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

.review-url-preview-thumb {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #f1f5f9;
    flex-shrink: 0;
}

.review-url-preview-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.review-url-preview-platform {
    font-size: 0.72rem;
    font-weight: 700;
    color: #4f46e5;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.review-url-preview-title {
    font-size: 0.88rem;
    font-weight: 600;
    color: #0f172a;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.review-url-preview-desc {
    font-size: 0.78rem;
    color: #64748b;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}

.review-url-preview-fallback {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    width: 100%;
    box-sizing: border-box;
}

.fallback-icon {
    font-size: 1.8rem;
    line-height: 1;
}

.fallback-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.fallback-platform {
    font-size: 0.85rem;
    font-weight: 600;
    color: #0f172a;
}

.fallback-url {
    font-size: 0.75rem;
    color: #64748b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.content-preview.text-snippet {
    font-size: 0.92rem;
    line-height: 1.5;
    color: #334155;
    background: #faf5ff;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid rgba(124, 58, 237, 0.08);
    margin: 0;
}

/* Details Page URL Preview styles */
.url-preview-content-box {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.review-details-url-header {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 0.88rem;
    color: #334155;
}

.review-details-url-preview-box {
    width: 100%;
}

.details-preview-card {
    display: flex;
    flex-direction: row;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

@media (max-width: 640px) {
    .details-preview-card {
        flex-direction: column;
    }
    .details-preview-image-wrapper {
        width: 100% !important;
        height: 160px;
    }
}

.details-preview-image-wrapper {
    width: 180px;
    flex-shrink: 0;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #f1f5f9;
}

.details-preview-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.details-preview-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    min-width: 0;
}

.details-preview-badge {
    align-self: flex-start;
    font-size: 0.72rem;
    font-weight: 700;
    color: #7c3aed;
    background: rgba(124, 58, 237, 0.06);
    border: 1px solid rgba(124, 58, 237, 0.15);
    padding: 2px 8px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.details-preview-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
    line-height: 1.35;
}

.details-preview-desc {
    font-size: 0.85rem;
    color: #475569;
    margin: 0;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.details-preview-fallback {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
}

/* ── Vote Comparison UI ── */

.review-vote-comparison {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 8px 12px;
    box-sizing: border-box;
    margin-top: 6px;
    margin-bottom: 6px;
}

.comparison-pill {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    align-items: center;
    padding: 6px 12px;
    border-radius: 8px;
    box-sizing: border-box;
}

.comparison-pill.ai-pill {
    background: rgba(239, 68, 68, 0.05);
    border: 1px solid rgba(239, 68, 68, 0.1);
}

.comparison-pill.real-pill {
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.1);
}

.pill-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    color: #64748b;
}

.pill-value {
    font-size: 0.85rem;
    font-weight: 700;
}

.comparison-pill.ai-pill .pill-value {
    color: #dc2626;
}

.comparison-pill.real-pill .pill-value {
    color: #166534;
}

.comparison-connector {
    font-size: 0.72rem;
    font-weight: 800;
    color: #94a3b8;
    letter-spacing: 0.05em;
    padding: 0 4px;
    text-transform: uppercase;
}

/* Details Page Comparison Card */
.conflict-card {
    border-top: 4px solid #f59e0b; /* Amber warning color */
}

.details-vote-comparison {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 576px) {
    .details-vote-comparison {
        flex-direction: column;
        gap: 12px;
    }
    .details-comp-divider {
        transform: rotate(90deg);
        padding: 6px 0;
    }
}

.details-comp-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 16px 20px;
    border-radius: 12px;
    box-sizing: border-box;
    transition: transform 0.2s ease;
    align-items: center;
}

.details-comp-box.ai-theme {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.04) 0%, rgba(239, 68, 68, 0.08) 100%);
    border: 1px solid rgba(239, 68, 68, 0.15);
}

.details-comp-box.real-theme {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.04) 0%, rgba(16, 185, 129, 0.08) 100%);
    border: 1px solid rgba(16, 185, 129, 0.15);
}

.comp-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #475569;
}

.comp-val {
    font-size: 1.15rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 6px;
}

.details-comp-box.ai-theme .comp-val {
    color: #b91c1c;
}

.details-comp-box.real-theme .comp-val {
    color: #14532d;
}

.vote-icon {
    font-size: 1.3rem;
}

.details-comp-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.divider-circle {
    width: 36px;
    height: 36px;
    background: #ffffff;
    border: 2px solid #cbd5e1;
    color: #64748b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
    box-shadow: 0 2px 4px rgba(0,0,0,0.04);
}
