﻿@font-face {
    font-family: "Raleway";
    font-style: normal;
    font-weight: 400;
    src: url("https://fonts.gstatic.com/s/raleway/v18/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvaorCIPrE.woff2") format("woff2");
}

:root {
    --backgroundColor: #ffffff;
    --fontColor: #191919;
    --borderColor: #191919;
    --vereinOrange: #ed7e29;
}

body {
    font-family: Raleway;
    color: var(--fontColor);
    background-color: var(--backgroundColor);
}


#topRow {
    position: fixed;
    z-index: 1;
    width: 98%;
    height: auto;
    top: 0px;
    border: 0px solid black;
    background-color: var(--backgroundColor);
}
#notification {
    position: relative;
    width: 100%;
    margin-bottom: 2px;
    border: 0px solid black;
    background-color: var(--vereinOrange);
    text-align: center;
    font-size: 1.5em;
}
#navigation {
    position: relative;
    width: 100%;
    margin-bottom: 2px;
    border: 0px solid black;
    background-color: var(--backgroundColor);
    font-size: 2em;
}
.topRowButton {
    position: relative;
    float: right;
    width: 60px;
    height: 60px;
    border: 0px solid black;
    background-color: #ffffff;
}





#content {
    position: absolute;
    width: 98%;
    min-height: 90%;
    margin-top: 120px;
    border: 0px solid var(--borderColor);
}



#loginContainer {
    width: 90%;
    margin-left: 5%;
    height: 100%;
    border: 0px solid black;
    font-size:1.5em;
}
#loginLogo {
    height: 100px;
    background-repeat: no-repeat, no-repeat;
    background-image: url("images/logo.png");
    background-position: center;
}
#loginInputFieldA {
    width: 90%;
    height: 50px;
    margin-bottom: 5px;
    font-family: Raleway;
    font-size: 1.5em;
}
#loginInputFieldB {
    width: 90%;
    height: 50px;
    margin-bottom: 5px;
    font-family: Raleway;
    font-size: 1.5em;
}
.loginSubmitButton {
    width: 60%;
    height: 50px;
    margin-left: 20%;
    margin-top: 5px;
    font-family: Raleway;
    font-size: 1.5em;
}


.module {
    background-color: var(--backgroundColor);
    border: 0px solid red;
    margin-bottom: 8px;
}
#userStatus {
    background-color: #4cff00;
    border: 0px solid black;
}
#colleagues {
    background-color: #ffd800;
    display: grid;
}

#admin {
    background-color: var(--backgroundColor);
    border-color: var(--borderColor);
}


#statusSelect {
    width: 300px;
    height: 80px;
    font-size:2em;
    text-align: center;
}
#placeSelect {
    width: 150px;
    height: 80px;
    font-size: 2em;
    text-align: center;
}
#backSelect {
    width: 300px;
    height: 80px;
    font-size: 2em;
    text-align: center;
}
.dateSelect {
    width: 100px;
    height: 80px;
    font-size: 2em;
    text-align: center;
}
#commentField {
    width: 400px;
    height: 80px;
    font-size: 2em;
}
#statusSubmitButton {
    width: auto;
    height: 80px;
    font-size: 2em;
    box-shadow: 2px 2px #ccc;
    margin-left: 50px;
}


#filter {
    width: auto;
    height: 80px;
    font-size: 2em;
    text-align: center;
    
    box-shadow: 2px 2px #ccc;
    margin-bottom: 5px;
}


#liste {
    width: 100%;
    height: 20px;
    margin-top: 20px;
    /*background-color: #ffd800;*/
    display: grid;
    grid-template-columns: auto auto auto auto auto 1fr;
    grid-auto-rows: auto;
    grid-gap: 5px;
    font-size: 1em;
}

.zeileName {
    padding: 5px;
    border: 1px solid grey;
    grid-row: auto;
    grid-column: 1 / 1;
}

.zeileStatus {
    padding: 5px;
    border: 1px solid grey;
    grid-row: auto;
    grid-column: 2 / 2;
}

.zeileOrt {
    padding: 5px;
    border: 1px solid grey;
    grid-row: auto;
    grid-column: 3 / 3;
    text-align: center;
}

.zeileTel {
    padding: 5px;
    border: 1px solid grey;
    grid-row: auto;
    grid-column: 4 / 4;
    text-align: center;
}

.zeileBack {
    padding: 5px;
    border: 1px solid grey;
    grid-row: auto;
    grid-column: 5 / 5;
}

.zeileBemerkung {
    padding: 5px;
    border: 1px solid grey;
    grid-row: auto;
    grid-column: 6 / 6;
}

.zeileDetails {
    background-color: #fab870;
    line-height: 2em;
    margin-bottom: 4px;
    box-shadow: 4px 4px #ccc;
    padding: 5px;
    height: auto;
    border: 0px solid black;
    border-radius: 5px;
    grid-row: auto;
    grid-column: 1 / 7;
}
.links {
    border-right: 1px solid black;
    width: auto;
    float: left;
    text-align: right;
    padding: 5px;
}

.rechts {
    width: auto;
    float: left;
    padding: 5px;
}
