* {
  box-sizing: border-box;
}

.table-wrap {
  overflow: auto;
  max-width: 100vw;
}

table > * {
  white-space: pre;
  word-break: keep-all;
}

.nav {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 8px;
  height: 42px;
}

#customers-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 8px 8px 12px;
}

.nav__plus {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  font-size: 14px;
  line-height: 14px;
  cursor: pointer;
}

.customers-tab__close-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
}

.nav div {
  border: 1px solid #000;
}

table, td, th {
  border: 1px solid #000;
}

.control-panel {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.control-panel__buttons {
  display: flex;
  gap: 8px;
}

.control-panel__rows {
  display: flex;
  gap: 8px;
}

.control-panel__buttons button {
  height: 32px;
  padding: 0 12px;
}