*{
font-family: 'Open Sans' , sans-serif;
font-size: 11pt;
}

body{
    background-color: #f0f0f0;
    margin:0px;
    padding: 0px;
}

/* Login */
body.loginbody{
    background-image: url("../data/img/test_background.jpg");
    background-repeat: no-repeat;
    background-size: 105%;
}

.login{
    overflow:hidden;
    background-color:white;
    padding: 40px 30px 30px 30px;
    border-radius: 10px;
    position: absolute;
    top: 30%;
    left: 40%;
    width: 400px;
}

.login input{
    display: block;
    font-size: 16px;
    background: white;
    width: 100%;
    border: 0;
    padding: 10px 10px;
    margin: 15px -10px; 
    border-bottom: 1px solid black;
}

.login span.login_header{
    display: block;
    font-size: 25px;
    width: 100%;
    text-align: center;
    margin: 15px -10px; 
    margin-top: -15px;
}

.login input[type="submit"]{
    color: #fff;
    text-transform: uppercase;
    width: 200px;
    border: 0;
    padding: 10px 0;
    margin-top: 25px;
    border-radius: 5px;
    background-color: #c5335b;
}

.login input[type="submit"]:hover{
    background-color: #9c2948;
    cursor: pointer;
}

/* Login Ende*/
/* Header */

div#head{
    border-bottom: 1px solid black;
    width:100%;
    height: 72px;
    display: flex;
    background-color: white;
}

#head #home{
    font-size: 20px;
    margin-left: 30px;
    position: relative;
    flex: 1 1 auto;
    display : inline-block;
    align-self: center;
}

#head #home a, #head #logout a{
    text-decoration: none;
    color: #c5335b;
}

#head #home a:hover, #head #logout a:hover{
    color: #9c2948;
    text-decoration: underline;
}

#head #logout{
    font-size: 20px;
    margin-right: 30px;
    position: relative;
    flex: 0 1 auto;
    display: inline-block;
    align-self: center;
}

#inhalt{
    overflow: hidden;
    margin: 10px;
    padding: 5px;
}

/* Header Ende */
/* Navbar -> Elemente */

div.navbar{
    margin-top: 6px;
    float:left;
    width:100%;
    height: 50px;
}

ul.list{
    text-align: center;
    list-style: none;
    padding:0;
    margin:0;
}

ul.list li{
    display: inline;
    padding-bottom: 6px;
    border-bottom: 2px solid #c5335b;
}

ul.list li a{
    color: #c5335b;
    text-transform: uppercase;
    text-decoration: none;
    padding: 6px 8px;
}

ul.list li a:hover{
    color: #9c2948;
}

ul.list li a.active{
    background-color: #c5335b;
    color:white;
}

/* Navbar Ende */
/* Standard-Listen Tabelle */ 

table.liste{
    border-collapse: collapse;
    border: 1px solid #bebebe;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12);
}

table.liste th,td{
    text-align: left;
    padding: 8px;
}

table.liste tr.listenzeile:nth-child(even){
    background-color: white;
}

table.liste tr.listenzeile:nth-child(odd){
    background-color: #e6e6e6;
}

table.liste tr.listenzeile:hover{
    background-color: #bebebe;
}

table.liste th{
    text-transform: uppercase;
    background-color: white;
    border-bottom: 2px solid black;
}

/* Tabelle Ende */


h1.titel{
    padding-bottom: 5px;
    text-transform:uppercase;
    font-size: 22px;
    border-bottom: 2px solid black;
    display:block;
}

/* Filterbox */
div.filterbox div.form-element {
    display: inline-block;
    margin-right: 1em;
}