



.client-item {
    padding: 0.65rem 1rem 0.65rem 2.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: background 0.2s ease;
    color: var(--text-muted);
    border-left: 3px solid transparent;
    font-size: 1rem;
}

.client-item.active {
    background: var(--bg-section);
    border-left-color: var(--gold);
    color: var(--text);
}

.client-item-id {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-family: monospace;
}
