* {
  box-sizing: border-box;
}

html {
  font-family:  "Roboto", sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI',
    Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue',
    sans-serif;
  min-height: 100vh;
}

body {
  margin: 0;
  color: #333;
  font-family: "Roboto", sans-serif;
  min-width: min-content;
  min-height: 100vh;
  font-size: 16px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

main {
  width: 100%;
  display: flex;
}

section.dashboard {
  height: 100%;
}

section.content {
  max-width: calc(100vw - 350px);
  padding-inline: 20px;
}

.header-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
  min-height: 175px;
}

.header-container :is(company-info, page-info) {
  flex-basis: 40%;
}
#main-wrapper {
  display: flex;
  flex-grow: 1;
}
.menu {
  height: 100%;
}
dashboard-component {
  width: 100%;
  height: 100%;
}
main > p {
  width: 100%;
}

.dashboard {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;

  h1 {
    font-weight: normal;
  }
}
