.thieffry-site {
  flex: 1;
  background-color: beige;
  display: flex;
  flex-direction: row;
  overflow: auto;
}

.thieffry-site-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  background-color: whitesmoke;
}

.thieffry-site-header {
  background-color: white;
  border-bottom: 1px solid black;
  font-size: large;
}

.thieffry-site-body {
  flex: 1;
}

.thieffry-site-footer {
  background-color: white;
  border-top: 1px solid black;
  font-size: large;
}

.thieffry-site-pane-handle {
  cursor: pointer;
}

.thieffry-site-pane-left,
.thieffry-site-pane-right {
  display: flex;
  flex-direction: column;
  min-width: 10%;
  padding: 0.2em;
}

.thieffry-site-pane-left.hidden,
.thieffry-site-pane-right.hidden {
  display: none;
}

.thieffry-site-pane-left {
  background-color: whitesmoke;
  border-right: 1px solid black;
}

.thieffry-site-pane-right {
  background-color: whitesmoke;
  border-left: 1px solid black;
}

.thieffry-site-sidemenu {
  flex: 1;
  background-color: whitesmoke;
  padding: 0.3em;
}

.thieffry-site-error {
  flex: 1;
  background-color: red;
}