/* ── Cell seeding tool ── */
#seed-results {
    display: none;
    margin-top: 2rem;
    padding: 2rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    background: var(--color-surface);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

#seed-results h3 {
    margin-top: 0;
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

#seed-results h3::before {
    content: "";
    display: block;
    width: 4px;
    height: 1.25rem;
    background: var(--color-primary);
    border-radius: 2px;
}

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

#seed-table tbody tr {
    font-size: 0.875rem;
    border-bottom: 1px solid var(--color-border-light);
    transition: background 0.2s ease;
}

#seed-table tbody tr:last-child {
    border-bottom: none;
}

#seed-table tbody tr:hover {
    background: var(--color-surface-hover);
}

#seed-table td {
    padding: 0.625rem 1.25rem;
}

#seed-table td:first-child {
    color: var(--color-text-secondary);
    font-weight: 500;
    font-family: var(--font-sans);
}

#seed-table td:last-child {
    font-weight: 500;
    color: var(--color-text);
    font-family: var(--font-mono);
}

#seed-table strong {
    font-weight: 600;
    color: var(--color-primary);
}

.seed-normal-text { color: var(--color-text); }
.seed-muted-text  { color: var(--color-text-muted); font-weight: normal; }
