/*Standart*/
html, body {
  height: 100%
}
body{
    margin: auto;
    background-color: white;

    }
ul {
      list-style: none;
      padding-left: 0;
      padding-top: 0;
}

/*Navbar Menüleisten*/
.nav {
    list-style: none;
}
.navbar {
    background-color: #f8f8f8;
    min-height: 50px;
}

.navbar-titel {
    color: #777;
    float: left;
    text-decoration: none;
    padding: 15px 15px;
    font-size: 18px;
    line-height: 20px;
    height: 50px;
}

.navbar-oben{
  max-height: 50px;
  border-bottom: 1px solid;
  border-color: lightgrey;
  margin-bottom: 0;
  vertical-align: middle;
}
.navbar-links {
    position: absolute;
    top: 50px;
    left: 0px;
    width: 250px;
    height: calc(100% - 50px);
    border-right: 1px solid;
    border-color: lightgrey;
}
.navbar nav a,nav a:visited {
    display: block;
    padding: 10px 15px;
    background-color: #f2f2f2;
    text-decoration: none;
    border-bottom: 1px solid;
    border-color: lightgray;
    color:#0099cc;
}
.navbar li a:hover {
    background-color: #e6e6e6;
}
.navbar li .active {
    background-color: #e6e6e6;
}

/*Home*/
.container2 {
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
  align-content: center;
  text-align: center;
  align-items: center;
  width: 80%;
}
/*Logout Dropdown Menü*/
.logout {
  float: right;
  overflow: hidden;
}

.logout img {
  position:absolute;
  top: 0px;
  right: 0px;
  height: 50px;
  width: 50px;
  outline: none;
  color: white;
  background-color: inherit;
  font-family: inherit;
}

.logout-content {
  position: absolute;
  top: 50px;
  right: 0px;
  display: none;
  background-color: #f9f9f9;
  min-width: 75px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.logout-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.logout-content a:hover {
  background-color: #ddd;
}

.logout:hover .logout-content {
  display:block;
}

/*Haupt DIV*/
.container{
  position: absolute;
  top: 50px;
  left: 250px;
  width: calc(100% - 250px);
  min-height: calc(100% - 50px);
}

/*Textfelder bei Einstellungen*/
.container .einstellungen table{
  background-color: rgb(242, 242, 242);
  padding-left: 15px;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-right: 15px;
  border: 1px solid #cccccc;
  border-radius: 4px;
  width: 300px;
  margin-left: auto;
  margin-right: auto;
}

.container .einstellungen th{
  font-size: 42px;
}

.container .einstellungen td{
  font-size: 14px;
}

.container .einstellungen td, th{
  padding: 6px 12px;
  background-color: #ffffff;
  border: 1px solid #cccccc;
}

/*Login Seite*/
.login-body{
  display: flex;
  align-content:center;
  align-items: center;
  justify-content : center;
  margin-top: 10%;
}
.login{
   background-color: rgb(242, 242, 242);
   display: inline-flex;
   max-height: 150px;
   margin: auto;
   border: 1px solid #cccccc;
   border-radius: 4px;
}

.login .login-input{
  padding-top: 15px;
  padding-bottom: 15px;
  padding-right: 15px;
  width: 326px;
}

.login .login-logo{
  padding: 15px;;
}

.box{
  display: inline-flex;
  align-content:center;
  align-items: center;
  justify-content : center;
  margin-top: 10px;
}

.box .green{
  background-color: #58FA58;
  border: 3px solid #01DF01;
  border-radius: 4px;
  padding: 15px;
  margin: auto;
}

.box .red{
  background-color: #FF6D6D;
  border: 3px solid #FF0000;
  border-radius: 4px;
  padding: 15px;
  margin: auto;
}

.login-button {
  color: #ffffff;
  background-color: #f0ad4e;
  border-color: #eea236;
  border-radius: 4px;
  min-width: 88px;
  height: 34px;
  float: right;
}

.login-button:hover {
  background-color: #f0ad4e;
}

.input-textfeld {
  width: 300px;
  height: 28px;
  vertical-align: middle;
}

input[type="text"], input[type="password"]{
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.428571429;
  background-color: #ffffff;
  border: 1px solid #cccccc;
  border-radius: 4px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

input[type="text"]:focus, input[type="password"]:focus {
  border-color: #66afe9;
  outline: 0;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}
