.earlybird-comparison-table-wrap {
    --eb-ct-primary: #1b5e3b;
    --eb-ct-primary-soft: #e8f3ec;
    --eb-ct-ink: #0f172a;
    --eb-ct-muted: #64748b;
    --eb-ct-border: #d6e3db;
    --eb-ct-surface: #ffffff;
    --eb-ct-radius: 12px;
    --eb-ct-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);

    width: 100%;
    max-width: 960px;
    margin: 1.5rem auto;
    font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--eb-ct-ink);
}

.earlybird-comparison-table-scroll {
    overflow-x: auto;
    border-radius: var(--eb-ct-radius);
    box-shadow: var(--eb-ct-shadow);
    background: var(--eb-ct-surface);
}

.earlybird-comparison-table {
    width: 100%;
    min-width: 320px;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--eb-ct-surface);
}

.earlybird-comparison-table thead th {
    padding: 1rem 1.25rem;
    text-align: center;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--eb-ct-ink);
    background: linear-gradient(180deg, #f8fbf9 0%, var(--eb-ct-primary-soft) 100%);
    border-bottom: 2px solid var(--eb-ct-border);
}

.earlybird-comparison-table thead th:first-child {
    border-top-left-radius: var(--eb-ct-radius);
}

.earlybird-comparison-table thead th:last-child {
    border-top-right-radius: var(--eb-ct-radius);
}

.earlybird-comparison-table tbody td {
    padding: 0.9rem 1.25rem;
    text-align: center;
    font-size: 1rem;
    line-height: 1.45;
    border-bottom: 1px solid var(--eb-ct-border);
    vertical-align: middle;
}

.earlybird-comparison-table tbody tr:last-child td {
    border-bottom: 0;
}

.earlybird-comparison-table tbody tr:last-child td:first-child {
    border-bottom-left-radius: var(--eb-ct-radius);
}

.earlybird-comparison-table tbody tr:last-child td:last-child {
    border-bottom-right-radius: var(--eb-ct-radius);
}

.earlybird-comparison-table tbody tr:nth-child(even) td {
    background: #fafcfb;
}

.earlybird-comparison-table thead th:not(:last-child),
.earlybird-comparison-table tbody td:not(:last-child) {
    border-right: 1px solid var(--eb-ct-border);
}

.earlybird-comparison-table-error {
    padding: 1rem;
    border-radius: 8px;
    background: #fef2f2;
    color: #b91c1c;
    text-align: center;
}

@media (max-width: 640px) {
    .earlybird-comparison-table thead th,
    .earlybird-comparison-table tbody td {
        padding: 0.75rem 0.85rem;
        font-size: 0.92rem;
    }
}
