body {
  margin: 0px;
  padding: 0px;
  font-family: 'Ubuntu', sans-serif;
  background-color: white;
}

h1 {
  font-size: 1.7em;
}

h2 {
  font-size: 1.1em;
}

h3 {
  font-size: 1.3em;
}

h4 {
  font-size: 1.1em;
}

thead {
  font-size: 0.85em;
}

tbody {
  font-size: 0.85em;
}

.right {
  float: right;
}

.red {
  color: red;
}

.blue {
  color: blue;
}

/* Bootstrap additions */
.lb-sm {
  font-size: 0.9em;
}

.lb-md {
  font-size: 1em;
}

.lb-lg {
  font-size: 1.1em;
}

.btn-sm {
  padding-top: 0px;
  padding-bottom: 0px;
}

.table .thead-dark th {
  color: black;
  background-color: #9fcdff;
}

.input-sm, select.input-sm {
  height: 30px;
  line-height: 30px;
  font-size: 0.9em;
}

/* DataTables sorting */
.sorting_asc {
  background: url('../gui_images/sort_asc.png') no-repeat center right;
}

.sorting_desc {
  background: url('../gui_images/sort_desc.png') no-repeat center right;
}

.sorting {
  background: url('../gui_images/sort_both.png') no-repeat center right;
}

.sorting_asc_disabled {
  background: url('../gui_images/sort_asc_disabled.png') no-repeat center right;
}

.sorting_desc_disabled {
  background: url('../gui_images/sort_desc_disabled.png') no-repeat center right;
}

/* Menu handling */
.offcanvas-header{ display:none; }

@media (max-width: 992px) {
  .offcanvas-header{ display:block; }
  .navbar-collapse {
    position: fixed;
    top:0; 
    bottom: 0;
    left: 100%;
    width: 100%;
    padding-right: 1rem;
    padding-left: 1rem;
    overflow-y: auto;
    visibility: hidden;
    background-color: #eeeeee;
    transition: visibility .2s ease-in-out, -webkit-transform .2s ease-in-out;
  }
  .navbar-collapse.show {
    visibility: visible;
    transform: translateX(-100%);
  }
}

/* System main divs */
#header {
  float: left;
  padding: 4px;
  min-height: 104px;
  width: 100%;
/*
  background-image: url("../gui_images/header.jpg");
  background-position: top left;
  background-repeat: no-repeat;
*/
}

#status {
  float: left;
  clear: both;
  width: 100%;
  margin-bottom: 3px;
  padding-left: 8px;
  padding-right: 8px;
  background-color: #9fcdff;
}

#menu {
  float: left;
  clear: both;
  width: 100%;
  margin-bottom: 3px;
}

#main {
  float: left;
  clear: both;
  width: 100%;
  padding: 8px;
  margin-bottom: 3px;
  background-color: #eeeeee;
}

#topbar {
  float: left;
  min-height: 6px;
  width: 100%;
  text-align: center;
  clear: both;
  color: white;
  background-color: #d00000;
}

#bottombar {
  float: left;
  padding-top: 5px;
  height: auto;
  width: 100%;
  text-align: center;
  clear: both;
  color: white;
  background-color: #d00000;
}

#footer {
  float: left;
  padding-top: 5px;
  height: 34px;
  width: 100%;
  text-align: center;
  clear: both;
  color: #888888;
  background-color: black;
}


