﻿body {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: smaller;
    margin: 0px;
    padding: 0px;
    height: 100%;
    background-color: white;
}

.container {
    display: grid;
    /*    grid-auto-columns: 1fr;
    grid-auto-rows: 1fr;*/
    /* grid-template-columns: 5% 45% 45% 10%;*/
    grid-template-columns: 5% 90% 5%;
    /*grid-template-rows: 160px 800px 100px;*/ /*festgelegt für full HD 1920x1080*/
    /*grid-template-rows: 25% 50% 25%;*/ /*festgelegt für full HD 1920x1080*/
    grid-template-rows: 10% 80% 10%; /*festgelegt für full HD 1920x1080 */
    /*gap: 4px 5px;*/
    grid-template-areas: "header header header" ". contentCenter ." ". footer .";
    background-color: white;
}

.header {
    grid-area: header;
    background-color: white;
}

.contentCenter {
    display: flex;
    justify-self: start;
    align-self: start;
    grid-area: contentCenter;
    width: 100%;
    height: 100%;
    background-color: white;
}

.flexCenter {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    flex-wrap: wrap;
    /*align-content: center;*/
    align-content: start;
    align-items: stretch;
    flex-direction: column;
    width: 100%;
    height: 100%;
    background-color: white;
}

.eventCenter {
    display: flex;
    align-items: center;
    /*    box-shadow: -7px -7px 4px #023C63;*/
    padding: 10px 10px 10px 10px;
    /*margin-top: 15px;*/
    margin-top: 25px;
    background-color: transparent;
    width: 90%;
    height: 13%; /*Hier wird die Höhe der Infoboxen der Veranstaltung eingestellt*/
}

.EventStyleTime {
    background-color: transparent;
    font-size: medium;
    text-align: left;
    font-weight: normal;
    font-family: 'Arial Nova';
    color: black;
}

.EventStyleRes {
    background-color: transparent;
    font-size: medium;
    text-align: left;
    font-weight: normal;
    font-family: 'Arial Nova';
    color: black;
    Width ="50%"
}
.EventStyleEvent {
    background-color: transparent;
    font-size: large;
    text-align: left;
    font-size-adjust: inherit;
    font-display: auto;
    font-weight: bold;
    font-family: 'Arial Nova';
    color: black;
    height: 20px;
}


.footer {
    grid-area: footer;
    font-family: 'Arial Nova';
    background-color: white;
}

#tableFooter {
    background-color: transparent;
    /*Width: 100%;*/
    height: 30px;
   /* padding-top: 20px;*/
    color: black;
   /* GridLines:Both;*/
}
/*#fr1 {
    height: 10px;
    font-size: x-large;
    font-weight: 500;
    vertical-align: central;
    text-align: left;
}*/
.frow0 {
    height: 80%;
    font-size: large;
    font-weight: 500;
    /*vertical-align: central;*/
    text-align: left;
    /*color:red;*/
}
.frowCellCurrent {
    height: 80%;
    font-size: large;
    font-weight: 500;
    /*vertical-align: central;*/
    text-align: left;
    font-weight: bold;
    /*color: red;*/
}




