I have my PlantUML set up as such:
```
@startuml
!pragma teoz true
box "Micro frontend"
box "Components"
box "Component 1"
entity Part1 as C1P1
entity Part2 as C1P2
end box
box "Component 2"
entity Part1 as C2P1
entity Part2 as C2P2
end box
end box
end box
@enduml
```
However, the Components box's title is being overlayed by both Component 1 and Component 2, making it unreadable. Is this known/what can I do to fix it?