.fnd-root {
    max-width: 760px;
    margin: 18px auto;
    padding: 24px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #333333;
}

.fnd-form textarea {
    width: 100%;
    height: 160px;
    padding: 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    margin-bottom: 12px;
    font-size: 15px;
    resize: vertical;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.05);
    transition: border-color 0.3s;
}

.fnd-form textarea:focus {
    border-color: #0ea5a9;
    outline: none;
}

.fnd-btn {
    background: #0ea5a9;
    color: #ffffff;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    transition: background 0.3s, transform 0.1s;
}

.fnd-btn:hover {
    background: #0c8b8e;
    transform: translateY(-1px);
}

.fnd-loading {
    margin-left: 12px;
    color: #6b7280;
    font-style: italic;
    font-size: 14px;
}

.fnd-card {
    background: #f9fafb;
    padding: 24px;
    border-radius: 12px;
    margin-top: 16px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.fnd-card h3 {
    margin: 0 0 8px;
    font-size: 1.3em;
    font-weight: 700;
    color: #333333; /* Dark text */
}

.fnd-card h3 span {
    margin-left: 5px;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: normal;
}

.fnd-card h4 {
    margin: 20px 0 8px;
    font-size: 1.1em;
    color: #4b5563;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 4px;
}

.fnd-progress {
    background: #e5e7eb;
    border-radius: 4px;
    height: 8px;
    margin-bottom: 12px;
    overflow: hidden;
}

.fnd-bar {
    height: 100%;
    transition: width 0.5s ease;
}

.fnd-reason {
    padding: 10px;
    margin: 10px 0;
    border-left: 5px solid;
    border-radius: 4px;
    color: #000000; /* Black text for Reason */
}

.fnd-reason-real {
    background: #d4f4d4; /* Light green bg */
    border-left-color: #1b5e20;
}

.fnd-reason-uncertain {
    background: #fff3cd;
    border-left-color: #f57f17;
}

.fnd-reason-fake {
    background: #f8d7da;
    border-left-color: #b71c1c;
}

.fnd-meta {
    font-size: 15px;
    margin: 5px 0;
    color: #000000; /* Black text for Bias/Sentiment */
}

.fnd-meta span {
    color: #000000; /* Force black text */
}

.fnd-summary {
    position: relative;
}

.fnd-summary-img {
    float: right;
    max-width: 150px;
    border-radius: 8px;
    margin-left: 10px;
    margin-bottom: 10px;
}

.fnd-checks, .fnd-factchecks {
    list-style: none;
    padding-left: 0;
}

.fnd-checks li, .fnd-factchecks li {
    margin-bottom: 8px;
    font-size: 15px;
    color: #4b5563;
}

.fnd-evidence {
    list-style: none;
    padding-left: 0;
}

.fnd-evidence li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.fnd-thumb {
    max-width: 60px;
    border-radius: 4px;
    margin-right: 10px;
}

.fnd-real, .fnd-bar.fnd-real {
    color: #1b5e20; /* Dark green */
    background-color: #d4f4d4; /* Light green for span bg if any */
}

.fnd-fake, .fnd-bar.fnd-fake {
    color: #b71c1c;
    background-color: #f8d7da;
}

.fnd-uncertain, .fnd-bar.fnd-uncertain {
    color: #f57f17;
    background-color: #fff3cd;
}

.fnd-neutral {
    color: #f57f17;
}

.fnd-positive {
    color: #1b5e20;
}

.fnd-negative {
    color: #b71c1c;
}

.fnd-left {
    color: #007bff;
}

.fnd-right {
    color: #b71c1c;
}

.fnd-error {
    color: #b91c1c;
    background: #fee2e2;
    padding: 12px;
    border-radius: 8px;
    margin-top: 12px;
    font-size: 15px;
}

.fnd-status {
    margin-bottom: 12px;
    color: #6b7280;
    font-size: 14px;
    font-style: italic;
}

.fnd-row {
    display: flex;
    align-items: center;
}

@media (max-width: 600px) {
    .fnd-root {
        padding: 16px;
    }
    .fnd-card {
        padding: 16px;
    }
    .fnd-summary-img {
        float: none;
        max-width: 100%;
        margin: 0 0 10px 0;
    }
}