/* Wider content area for tables */
.content main {
    max-width: 1100px;
}

/* Better table styling */
table {
    width: 100%;
    border-collapse: collapse;
}

table th, table td {
    padding: 6px 10px;
    border: 1px solid var(--table-border-color);
}

/* Code blocks in tables */
table code {
    font-size: 0.85em;
    padding: 1px 4px;
}

/* DB-substituted values get a subtle highlight */
.db-value {
    font-weight: 600;
}

/* Benchmark interactive styles */
.bench-controls {
    margin: 1em 0;
    padding: 0.5em;
    background: var(--table-header-bg);
    border-radius: 4px;
}
.bench-controls select {
    padding: 4px 8px;
    border-radius: 3px;
}
.bench-table {
    font-size: 0.9em;
}
.bench-bar-pair {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.bench-bar {
    height: 10px;
    border-radius: 2px;
    min-width: 2px;
    transition: width 0.3s;
}
.bench-faster { color: #27ae60; font-weight: bold; }
.bench-parity { color: #2c3e50; }
.bench-slower { color: #e74c3c; }
.bench-legend {
    font-size: 0.85em;
    color: var(--fg);
    margin-top: 0.5em;
}
