B:BD[
4.686] → [
4.686:776]
	var b strings.Builder
	b.WriteString(m.config.styles.HeaderText.Render("Protastim\n\n"))
	b.WriteString(m.config.styles.Base.Render(m.view.View()))
	lg := m.config.lg
	border := lipgloss.NormalBorder()
	wrapperStyle := lg.NewStyle().
		BorderStyle(border).
		BorderTop(false).
		BorderLeft(true).
		BorderBottom(true).
		BorderRight(true).
		BorderForeground(lipgloss.Color("63")).
		Height(m.config.size.Height-2).
		Width(m.config.size.Width-2)
	statusStyle := lg.NewStyle().
		Foreground(lipgloss.Color("63"))
	content := wrapperStyle.Render(m.view.View())
	title := statusStyle.Render(border.TopLeft + border.Top + border.Top) + " Protatastim"
	titleWidth := lipgloss.Width(title)
	status := lipgloss.PlaceHorizontal(m.config.size.Width-titleWidth, lipgloss.Right, "doing nothing " + statusStyle.Render(border.Top + border.Top + border.TopRight))