﻿.page {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto;
    grid-template-areas: "col-1 col-2 col-3";
}

    .page .shell { grid-area:shell; }
    .shell .label { }
    .shell .control { }

.entry {
    /*display: flex;
    flex-flow: column wrap;
    justify-content: flex-start;
    align-content: flex-start;*/

    background-color: #EAEAEA;

    padding: 10px;
    height: 100%;
    grid-gap: 3px;
        
    max-height: 100vh;
    overflow: auto;
    width: 100%;
}

.float-middle {
    max-width: 400px;
    margin: auto;
}

.row { 
    margin: 0 auto 10px auto;  
}

.form-label, .form-label-left {
    min-height: 1px;
    position: relative;
    display: block;
    margin: 4px 12px 2px 0;
    padding: 0;
    vertical-align: middle;
}

.form-label {
    text-align: left;
    color: #484848;
    font: bold 16px/20px 'Open Sans Condensed', Helvetica, Arial, sans-serif;
    width: 100%;
}

.form-radiolist, .form-control, .form-label-right, .form-error {
    box-sizing: border-box;    /* otherwise asp:Textbox etc do not obey the rules! */
    display: inline-block;
    padding: 4px 8px;
    vertical-align: middle;
    width: 100%;
}

.form-control {
    text-align: left;
    font: normal 18px/1 "Open Sans", Helvetica, Arial, sans-serif;
    height: 34px;
    color: #555;
    background-color: #fff;
    box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    outline:none;
    border: 1px solid #ccc;
    border-radius: 4px;
}

    .form-control:focus {
        box-shadow: inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px rgba(102,175,233,0.6);
        border-color: #66afe9;
    }

    .form-control[readonly], fieldset[disabled] .form-control {
        cursor: not-allowed;
        background-color: #eee;
    }

.form-radiolist {
    text-align: left;
    font: normal 18px "Open Sans", Helvetica, Arial, sans-serif;
    max-width: 400px;
    width: 100%;
    height: 100%;
    color: #555;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 2px;
    box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

    .form-radiolist:focus {
        border-color: #66afe9;
        outline: none;
        box-shadow: inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px rgba(102,175,233,0.6);
    }

    .form-radiolist[disabled], .form-radiolist[readonly], fieldset[disabled] .form-radiolist {
        cursor: not-allowed;
        background-color: #eee;
    }

.form-error {
    text-align: center;
    display: block;
    font: bold 18px "Open Sans", Helvetica, Arial, sans-serif;
}

.form-title {
    text-align: left;
    font: normal 18px "Open Sans", Helvetica, Arial, sans-serif;
    width: 100%;
    height: 100px;
    outline: none;
    margin: 0 auto;
}

.list-page {
    border: 3px solid lightblue;
    background-color: #EAEAEA;

    padding: 10px;
    height: 100%;
    grid-gap: 3px;
        
    max-height: 100vh;
    overflow: auto;
}

.header {
}


.list {
    width: 100%;
    background-color: #FFFFFF; 
    margin: 5px 0 10px 0; 
    border: solid 1px #525252; 
	border: none;
    border-collapse: collapse; 
    font-family: calibri; 
    color: #474747;
}

.list .header {
    font-weight:bold;
}

.list .header a {
    border: none;
    background-color: transparent;
    color: white;
}

.list .header a:after {
    font: 900 18px 'Font Awesome 5 Free';
    content: " \f0dc"; 
    color: white;
    text-decoration: none;
    vertical-align: middle;
}

.list .row {
    font-weight:normal;
}

.list .alternate {
    font-weight:bold;
    background-color: #EAEAEA;
}

.list td {
    padding: 2px 4px;
    border: solid 1px #c1c1c1; 
}

.list th {
    padding : 4px 4px;
    color: #fff;
    background-color: #4fb9e3;
    border-left: solid 1px #FFFFFF;
    font-size: 0.9em; 
}

.list a { 
    margin: 8px;
    text-align: center;
    color: #049cd7; 
    background-color: white;
    font-weight: bold;
    text-decoration: none;
    border: 3px solid #a4b7c6;
    border-radius: 8px;
    font-size: 14px;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    padding: 2px 10px;
    line-height: 32px;
}
 
.list a:hover { 
    color: white; 
    font-weight: bold;
    text-decoration: none; 
    background-color: #049cd7; 
}


