:host {
  display: block;
  min-width: 0;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;

  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  height: 56px;
  padding-right: 12px;
  padding-left: 12px;

  background-color: var(--user-header-bg-color, var(--header-panel-color-bg));
  border-bottom: 1px solid var(--header-panel-border-color);
}

.header-main,
.header-actions {
  display: flex;
  align-items: center;
  min-width: 0;
  height: 100%;
}

.header-main {
  flex: 1 1 auto;
}

.header-navigation {
  overflow: hidden;
  display: flex;
  flex: 1 1 auto;
  align-items: stretch;

  min-width: 0;
  height: 100%;
  margin-left: 8px;
}

.header-logo {
  flex: 0 0 auto;
}

.header-navigation-form {
  min-width: 0;
}

.header-actions {
  flex: 0 0 auto;
}
