body {
    background-color: white;
    font-family: sans-serif,Arial, Helvetica;
    margin: 0;
}

#appheader{
    background-color: #0c1026;
    margin: 0;
    padding: 10px;
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    flex-flow: row nowrap;
    
}

#header_ts{
    font-size: 24px;
    text-align: left;
}

#header_title{
    font-size: 24px;
    text-align: center;
}

#header_menu{
    font-size: 24px;
    text-align: right;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

#menuitems{
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    padding: 0 10px;
    width: 100%
}

#menuitems div{
    margin: 0 5px;
    color: #ccc;
}
#menuitems div:hover{
    cursor: pointer;
    color: white;

}
#menuitems .active{
    text-decoration: underline;
    color: white;
}

#reportcontroller{
    text-align: center;
    padding: 15px 0;
}

#genreportbutton{
    margin: auto;
    font-size: 20px;
    color: #f5f5f5;
    height: 48px;
    line-height: 48px;
    padding-left: 32px;
    padding-right: 32px;
    border-radius: 3px;
    background-color: #19aaf8;
}

#reportFail{
    color: red;
    display: none;
    margin: 20px auto;
}

#reportGrid{
    height: 600px;
    width: 80%;
    margin: 0 auto;
}

.center {
    margin: auto;
    width: 500px;
    text-align: center;
    padding: 10px;
    border: 1px solid rgb(202, 202, 202);
    border-radius: 5px;
}

#login{
    padding-top: 25px;
    padding-bottom: 25px;
    margin-top: 30px;
}

#loginhead {
    font-size: 20px;
    margin-top: 20px;
}

.login_form{
    margin: 20px auto;
}

.inputfield {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
    width: 250px;
    border-radius: 5px;
    padding: 5px;
}

.dropzone {
    margin: auto;
    width: 400px;
    text-align: center;
    padding: 5px;
    border: 4px dashed rgb(202, 202, 202);
    border-radius: 5px;
    background-color: white;
}

.droptext {
    font-family: 'Courier New', Courier, monospace;
    font-size: 50px;
    color: rgb(202, 202, 202);
}



/* Drag n drop box */
.upload_container{
    width: 100%;
    max-width: 680px;
    text-align: center;
    margin: 20px auto;
}

.box{
    padding: 50px 20px;
    border-radius: 5px;
}

.box__dragndrop,
.box__uploading,
.box__success,
.box__error {
    display: none;
}

.has-advanced-upload {
    background-color: white;
    /* outline: 2px dashed black;
    outline-offset: -10px; */
    border: 2px dashed black;
    border-radius: 5px;
}
.has-advanced-upload .box__dragndrop {
    display: inline;
}
.box .has-advanced-upload {
    background-color: white;
    /* outline: 2px dashed black;
    outline-offset: -10px; */
    border: 2px dashed black;
    border-radius: 5px;
}
.box .has-advanced-upload .box__dragndrop {
    display: inline;
}
.box.is-dragover {
    background-color: #f5f5f5;
}

.box.is-uploading .box__input {
    display: none;
}
.box.is-uploading .box__uploading {
    display: block;
}

.box.is-error .box__error{
    display: block;
    font-size: 20px;
    padding: auto 32px; 
    height: 48px;
    margin: auto;
    
}

.box.is-error .box__error div{
    display: inline-block;
    background-color: #ffb4b4;
    margin: 0 auto; 
    padding-left: 32px;
    padding-right: 32px;
    height: 48px;
    line-height: 48px;
    border-radius: 24px;
}

.box.is-success .box__success{
    display: block;
    font-size: 20px;
    padding: auto 32px; 
    height: 48px;
    margin: auto;
    
}
.box.is-success .box__success div{
    display: inline-block;
    background-color: #b0f0b2;
    margin: 0 auto; 
    padding-left: 32px;
    padding-right: 32px;
    height: 48px;
    line-height: 48px;
    border-radius: 24px;
    
}

.status_image {
    width: 100px;
    height: 100px;
    margin: 40px 0px;
}

.box__button{
    margin: 20px auto;
    font-size: 20px;
    color: #f5f5f5;
    height: 48px;
    line-height: 48px;
    padding-left: 32px;
    padding-right: 32px;
    border-radius: 3px;
    background-color: #19aaf8;
}

.box__button:hover {
    background-color: #007ad0;
    cursor: pointer;
}

#login_btn{
    font-size: 20px;
    color: #f5f5f5;
    height: 48px;
    line-height: 48px;
    padding-left: 32px;
    padding-right: 32px;
    border-radius: 3px;
    background-color: #19aaf8;
}

#login_btn:hover {
    background-color: #007ad0;
    cursor: pointer;
}

.filterinput_text{
    font-size: 20px;
}

#choosefile_text:hover{
    text-decoration: underline;
    cursor: pointer;
}

#session_info{
    margin-top: 50px;
    font-size: 12px;
}

#logout_container{
    margin: 20px auto;
}

#logout_btn{
    font-size: 20px;
    color: #ffffff;
    height: 48px;
    line-height: 48px;
    padding-left: 32px;
    padding-right: 32px;
    border-radius: 3px;
    background-color: #767676;
}

#logout_btn:hover {
    background-color: #1a1a1a;
    cursor: pointer;
}


