.reference-table-card {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    background: #fff;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    padding: 0; /* Let table fill the card */
}

.reference-table {
    margin-bottom: 0;
    width: 100%;
}

.reference-table thead th {
    background-color: #f8f9fa;
    border-bottom: 2px solid var(--border-color);
    border-top: none;
    color: var(--text-primary);
    font-weight: 600;
    padding: 1rem 1.5rem;
    white-space: nowrap;
}

.reference-table tbody td {
    padding: 1rem 1.5rem;
    vertical-align: middle;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.reference-table tbody tr:hover {
    background-color: #fff9f5; /* Light orange tint on hover */
}

.reference-table tbody tr:last-child td {
    border-bottom: none;
}

.code-cell {
    font-family: monospace;
    font-weight: 600;
    color: var(--brand-orange);
    font-size: 1.1em;
    width: 15%;
}

.name-cell {
    font-weight: 500;
}
