html > body > #grid table.input-concatenated {
  border-collapse: collapse;

  > tbody > tr {
    > td {
      &:has(input) {
        width: 100%;

        > input {
          width: 100%;
        }
      }

      &:not(:has(input)) {
        white-space: nowrap;
        width: min-content;
      }
    }
  }
}
