/* Comparison Table Styles */
.table-container {
    overflow-x: auto;
    margin: 0 auto;
    max-width: 900px;
    border-radius: var(--radius);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background-color: hsl(var(--background));
    text-align: left;
}

.comparison-table th,
.comparison-table td {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid hsl(var(--border));
}

.comparison-table th {
    background-color: hsl(var(--muted));
    font-weight: 700;
    color: hsl(var(--foreground));
    font-family: var(--font-heading);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.highlight-col {
    background-color: hsl(var(--subtle-accent) / 0.1);
    font-weight: 600;
}

.comparison-table th.highlight-col {
    background-color: hsl(var(--subtle-accent) / 0.2);
    color: hsl(var(--primary));
}

.positive {
    color: #16a34a;
    /* Green */
}

.negative {
    color: #dc2626;
    /* Red */
}

.neutral {
    color: hsl(var(--muted-foreground));
}

@media (max-width: 640px) {

    .comparison-table th,
    .comparison-table td {
        padding: 1rem;
        font-size: 0.875rem;
    }
}