html {
  font-family: 'Inter', Arial, sans-serif;
}

.body {
  height: 100vh;
  width: 100vw;
  display: flex;
  flex: 1 0 auto;
  flex-direction: column;
  overflow: hidden;
  margin: 0;
  background-color: #f3f2ee;
}

.app-navbar {
  flex: 0 1 auto;
}

.app-secondary-navigation {
  flex: 0 1 auto;
  height: 100%;
}

.app-breadcrumbs {
  flex: 0 1 auto;
}

.app-feature {
  flex: 1;
  overflow: hidden;
}

.main-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  overflow: hidden;
}

.main-content.has-secondary-navigation {
  flex-direction: row;
}

.content-container {
  overflow: hidden;
  flex: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.content-container.hide-breadcrumbs {
  height: 100%;
  position: relative;
}

.content {
  position: static;
  display: flex;
  flex: 1;
}
