﻿body {
    font-family: Arial;
}

span {
    font-style: italic;
}

.greenTextColor {
    color: green;
}

.redTextColor {
    color: red;
}

.sticky {
    position: sticky;
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
}

.header-sticky {
    top: 0;
}

table.blueTable {
    border: 1px solid #1C6EA4;
    background-color: white;
    /*width: 100%;*/
    text-align: left;
    border-collapse: collapse;
    margin: 5px 5px;
}

    table.blueTable td, table.blueTable th {
        border: 1px solid #AAAAAA;
        /*padding: 3px 2px;*/
        padding: 5px;
        margin: 0px;
        box-shadow: 1px 1px #AAAAAA;
        
    }

.chartCell {
    padding: 0px !important;
    margin: 0px !important;
}


table.blueTable tbody td {
    font-size: 13px;
    white-space: nowrap;
}

table.blueTable tbody th {
    font-size: 13px;
    position: sticky;
    left: 0;
    background: white;
    z-index: 1;
    box-shadow: 1px 1px #AAAAAA;
    white-space: nowrap;
}

.nameBox {
    display:flex;
    align-items: center;
    vertical-align: middle;
}
    

.isWhiteListed {
    background: white;
}

.isRegistered {
    background: #8BC1EA;
}

.isActive {
    background: yellow;
}

.isDead {
    background: grey;
}

/*table.blueTable tr:nth-child(even) {
    background: #D0E4F5;
}*/

table.blueTable thead {
  /*  background: #1C6EA4;
    background: -moz-linear-gradient(top, #5592bb 0%, #327cad 66%, #1C6EA4 100%);
    background: -webkit-linear-gradient(top, #5592bb 0%, #327cad 66%, #1C6EA4 100%);
    background: linear-gradient(to bottom, #5592bb 0%, #327cad 66%, #1C6EA4 100%);
    border-bottom: 2px solid #444444;*/
}

    table.blueTable thead th {
        font-size: 15px;
        font-weight: normal;
        color: #FFFFFF;
        border: 1px solid #AAAAAA;
        position: sticky;
        background: #1C6EA4;
        white-space: nowrap;
        text-align: center;
        /*background: -moz-linear-gradient(top, #5592bb 0%, #327cad 66%, #1C6EA4 100%);
        background: -webkit-linear-gradient(top, #5592bb 0%, #327cad 66%, #1C6EA4 100%);
        background: linear-gradient(to bottom, #5592bb 0%, #327cad 66%, #1C6EA4 100%);*/
        /*border-bottom: 2px solid #444444;*/
        top: 0; /* Don't forget this, required for the stickiness */
    }

        table.blueTable thead th:nth-child(2) {
            position: sticky;
            left: 0;
            z-index: 2;
        }

table.blueTable tfoot {
    font-size: 14px;
    font-weight: bold;
    color: #FFFFFF;
    background: #D0E4F5;
    background: -moz-linear-gradient(top, #dcebf7 0%, #d4e6f6 66%, #D0E4F5 100%);
    background: -webkit-linear-gradient(top, #dcebf7 0%, #d4e6f6 66%, #D0E4F5 100%);
    background: linear-gradient(to bottom, #dcebf7 0%, #d4e6f6 66%, #D0E4F5 100%);
    border-top: 2px solid #444444;
}

    table.blueTable tfoot td {
        font-size: 14px;
    }

    table.blueTable tfoot .links {
        text-align: right;
    }

        table.blueTable tfoot .links a {
            display: inline-block;
            background: #1C6EA4;
            color: #FFFFFF;
            padding: 2px 8px;
            border-radius: 5px;
        }
