html,
body {
  height: 100vh;
  margin: 0;
}

#container {
  display: flex;
  flex-direction: column;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

#navbar {
  flex: 0 0 auto;
  padding: 4px 20px;
}

#content {
  flex: 1 1 auto;
  overflow-y: auto;
}

.bw-footer {
  flex: 0 0 auto;
  font-size: 0.75rem;
  padding: 4px 20px;
  text-align: center;
}

.app-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  height: 100%;
}

.app-content {
  flex: 1 1 auto;
  overflow-y: auto;
}

.app-footer {
  flex: 0 0 auto;
  background-color: white;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

#app-controls {
  display: flex;
  justify-content: flex-end;
}
