.tree {
    list-style: none;
    padding-left: 0;
}

.table-node {
    margin-bottom: 1rem;
    border-left: 1px solid var(--border-color);
    padding-left: 1rem;
}

.table-name {
    font-weight: 600;
    color: var(--accent-color);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0.5rem;
    cursor: pointer;
}

.table-name::before {
    content: "⊞"; /* A little plus/box icon */
    font-size: 0.8rem;
}

.column-list {
    list-style: none;
    padding-left: 1.5rem;
}

.column-item {
    font-family: "ui-monospace", monospace;
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: flex;
    justify-content: space-between;
    padding: 2px 0;
}

.data-type {
    color: #555; /* Dimmer text for types */
    font-size: 0.75rem;
}
