body {
  padding: 0px;
  margin: 0px;
  height: 100%;

  font-family: arial;
  font-size: 15px;
}

.page {
  display: flex;
  flex-direction: column;

  height: 100%;
  width: 100%;
}

.button {
  display: inline-block;

  border: 1px solid black;
  border-radius: 0.6em;

  padding: 0.2em 0.8em;

  font-size: larger;
  cursor: pointer;

  background-color: lightcyan;
}
.button:hover {
  background-color: darkturquoise;
  color: white;
}
.blockElement {
  box-sizing: border-box;

  border: 2px solid lightgrey;
}

.miscRow {
  display: flex;
  flex-direction: row;

  height: 100%;
  height: 8em;
}

.miscRow > div {
  flex-direction: row;
  flex-grow: 0;

  height: 100%;
  width: 100%;
}

.controlPanel,
.miscRow > .controlPanel {
  display: flex;
  align-items: center;

  width: auto;
}
.controlPanelContent {
}
.controlPanel .button {
  margin: 0.2em 0.2em 0em 0.2em;
}

.serverRow {
  display: flex;
  flex-direction: row;

  height: 100%;
  width: 100%;
}
.serverColumn {
  display: flex;
  flex-direction: column;
  flex-grow: 1;

  position: relative;
}
.serverColumn > div {
  position: relative;
}
.serverAuth {
  flex-grow: 0;

  height: 10em;
}
.serverStatusses {
  display: flex;
  flex-direction: row;
  flex-grow: 1;

  min-height: 1px; /*Somehow this helps with rendering without page-sized scrollbar*/
}
.serverStatus {
  display: flex;
  flex-grow: 5;
}
iframe {
  width: 100%;
  height: 100%;

  border-width: 0px;
}

/* Scaling style test */
.serverAuth iframe {
  -ms-zoom: 0.8;
  -moz-transform: scale(0.8);
  -moz-transform-origin: 0 0;
  -o-transform: scale(0.8);
  -o-transform-origin: 0 0;
  -webkit-transform: scale(0.8);
  -webkit-transform-origin: 0 0;
  width: 125%;
  height: 125%;
}
.miscColumn iframe {
  -ms-zoom: 0.8;
  -moz-transform: scale(0.8);
  -moz-transform-origin: 0 0;
  -o-transform: scale(0.8);
  -o-transform-origin: 0 0;
  -webkit-transform: scale(0.8);
  -webkit-transform-origin: 0 0;
  width: 125%;
  height: 125%;
}
.serverRow {
  overflow: hidden;
}
.miscRow {
  overflow: hidden;
}

.popup {
  position: fixed;
  width: 100%;
  height: 100%;

  z-index: 10;

  background: rgba(0, 0, 0, 0.5);
}
.popupFrame {
  position: absolute;
  top: 5em;
  bottom: 5em;
  left: 5em;
  right: 5em;

  border: 3em solid white;
  border-radius: 2em;

  background: rgba(255, 255, 255, 1);
}
.popupCloser {
  position: absolute;
  top: -2em;
  right: 0em;
}
.popupCloser:after {
  content: "Close";
}
.popupContent {
  width: 100%;
  height: 100%;

  overflow-x: scroll;
  overflow-y: scroll;
}
.settingsList .settingsBlock {
  display: flex;
  justify-content: space-between;
}

.settingsList label {
  /*display: block;*/
}
.settingsList h2 {
  margin-bottom: 0.2em;
}
.settingsList input {
  margin: 1em 0px;
}

/*
div {
    box-sizing:border-box;
    border: 1px solid crimson;
}
*/
