﻿body {
    background: white;
    font-size: 13px;
    font-family: "Helvetica Neue", "Lucida Grande", "Segoe UI", Arial, Helvetica, Verdana, sans-serif;
    margin: 0px;
    padding: 0px;
    color: black;
}

/*For UpperCase and Displayed Reports*/
.Standard {
    font-size: 13px;
    font-family: "Helvetica Neue", "Lucida Grande", "Segoe UI", Arial, Helvetica, Verdana, sans-serif;
    text-decoration: none;
}

.UpperCase {
    font-size: 13px;
    font-family: "Helvetica Neue", "Lucida Grande", "Segoe UI", Arial, Helvetica, Verdana, sans-serif;
    text-decoration: none;
    text-transform: uppercase;
}
/* end Uppercase and displayed reports */

.MasterHeader {
    top: 0;
    left: 0;
    margin: 0px;
    padding: 0px;
    background: #336699;
    width: 230px;
    display: block;
}

.tdAlign {
    display: inline-flex;
    align-items: center;
}

.Menu {
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    color: white;
    background-color: #336699;
    padding: 0px 0px 0px 0px;
    margin: 0px
}

    .Menu a {
        display: block;
    }

        .Menu a:hover {
            color: yellow;
            background-color: #336699;
        }

    .Menu img {
        width: 15px;
        height: 15px;
    }

.MenuHover:hover {
    background-color: #2d5781 !important;
    color: lightblue;
}

.MenuDropdown {
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    color: white;
    background-color: #336699;
    padding: 0px 5px 0px 5px;
    border: 1px solid #d0d0d0;
}

    .MenuDropdown a {
        display: block;
    }

@media print {
    .Menu {
        display: none;
    }

    .MasterHeader {
        display: none;
    }

    input[type=submit], input[type=button] {
    }
}

.QuickMenu {
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    color: white;
    background-color: #336699;
    padding: 0px 5px 0px 5px;
}

    .QuickMenu a {
        display: block;
    }

    .QuickMenu:hover {
        background-color: #2d5781 !important;
        color: lightblue;
    }

.QuickMenuOption {
    font-size: 14px;
    font-weight: normal;
    text-decoration: none;
    color: white;
    background-color: #336699;
    padding: 0px 5px 0px 5px;
}

    .QuickMenuOption a {
        display: block;
    }

    .QuickMenuOption:hover {
        background-color: #2d5781 !important;
        color: lightblue;
    }


.pageCenter {
    margin-left: auto;
    margin-right: auto;
    /*max-width: 1000px;*/
    /*overflow: auto;*/
    float: none;
}

.TableHeader {
    background-color: #336699;
    color: white;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    border-radius: 10px 10px 0px 0px;
    white-space: nowrap;
    padding: 0px 5px 0px 5px;
}


.ColHeader {
    background-color: #dde4ec;
    font-weight: bold;
    text-align: center;
    white-space: nowrap;
    font-size: 13px;
}


.RowHeader {
    background-color: #dde4ec;
    font-weight: bold;
    text-align: right;
    white-space: nowrap;
    font-size: 13px;
}


textarea, input, select {
    font-size: 13px;
    font-family: "Helvetica Neue", "Lucida Grande", "Segoe UI", Arial, Helvetica, Verdana, sans-serif;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

@media screen {
    input[type=checkbox] {
        accent-color: #336699;
    }

    input[type=submit]:disabled,
    input[type=button]:disabled {
        background-color: #cccccc; /* light gray */
        border: 2px solid #999999; /* darker gray border */
        color: #666666; /* gray text */
        cursor: not-allowed;
        text-shadow: none;
        filter: none; /* remove gradient/filter effects */
    }

    input[type=submit], input[type=button] {
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#7892c2', endColorstr='##336699',GradientType=0);
        background-color: #7892c2;
        -moz-border-radius: 4px;
        -webkit-border-radius: 4px;
        border-radius: 4px;
        border: 2px solid #336699;
        display: inline-block;
        cursor: pointer;
        color: #ffffff;
        font-family: Arial;
        font-size: 12px;
        padding: 4px 12px;
        text-decoration: none;
        text-shadow: 0px 0px 5px #283966;
    }

        input[type=submit]:hover:enabled, input[type=button]:hover:enabled {
            background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, #336699), color-stop(1, #7892c2));
            background: -moz-linear-gradient(top, #336699 5%, #7892c2 100%);
            background: -webkit-linear-gradient(top, #336699 5%, #7892c2 100%);
            background: -o-linear-gradient(top, #336699 5%, #7892c2 100%);
            background: -ms-linear-gradient(top, #336699 5%, #7892c2 100%);
            background: linear-gradient(to bottom, #336699 5%, #7892c2 100%);
            filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='##336699', endColorstr='#7892c2',GradientType=0);
            background-color: #336699;
        }

        input[type=submit]:active {
            position: relative;
            top: 1px;
        }
}

a {
    color: black;
}

    a:hover {
        color: #336699;
        background-color: #dde4ec;
    }

.ImageHyperlink:hover {
    background-color: white;
}

/* Modal popup
    -----------------------------------------------------*/
.modalBackground {
    background-color: Black;
    filter: alpha(opacity=40);
    opacity: 0.4;
    position: fixed;
    top: 0px;
    left: 0px;
}

.modalPopup {
    background-color: #FFFFFF;
    border: 3px solid #336699;
    border-radius: 12px;
    padding: 0px;
    /*    margin: 10px;*/
}

    .modalPopup .header {
        background-color: #336699;
        height: 30px;
        color: White;
        line-height: 30px;
        text-align: center;
        font-weight: bold;
        border-top-left-radius: 6px;
        border-top-right-radius: 6px;
        display: flex;
        justify-content: space-between;
        width: 100%;
    }

    .modalPopup .PopupBody {
        min-height: 50px;
        font-weight: normal;
        max-height: calc(100vh - 100px);
        overflow: auto;
        color: black;
    }


.list {
    border: 1px solid #CCC;
    list-style-type: none;
    margin: 0px;
    background-color: #AAA;
    font-size: 11px;
    font-family: verdana, Tahoma, sans-serif;
    width: 300px;
    text-align: left;
    cursor: pointer;
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
}

ul.list li {
    padding: 2px 5px;
    width: 300px;
}

.listitem {
    background-color: #EEE;
    color: #111;
    width: 300px;
}

.hoverlistitem {
    background-color: #555;
    color: #EEE;
}

.Mono {
    font-size: 12px;
    font-family: 'Courier New', Courier;
}

.Greenbar {
    background-color: #f8f8ff;
}

.NotGreenbar {
    background-color: white;
}

.highlights {
    background-color: #dde4ec;
    color: #336699;
    cursor: pointer;
}

.hint, [data-hint] {
    position: relative;
    display: inline-block;
}

    .hint:before, .hint:after, [data-hint]:before, [data-hint]:after {
        position: absolute;
        -webkit-transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        visibility: hidden;
        opacity: 0;
        z-index: 100;
        pointer-events: none;
        -webkit-transition: 0.3s ease;
        -moz-transition: 0.3s ease;
        transition: 0.3s ease;
        -webkit-transition-delay: 0ms;
        -moz-transition-delay: 0ms;
        transition-delay: 0ms;
    }

    .hint:hover:before, .hint:hover:after, .hint:focus:before, .hint:focus:after, [data-hint]:hover:before, [data-hint]:hover:after, [data-hint]:focus:before, [data-hint]:focus:after {
        visibility: visible;
        opacity: 1;
    }

    .hint:hover:before, .hint:hover:after, [data-hint]:hover:before, [data-hint]:hover:after {
        -webkit-transition-delay: 500ms;
        -moz-transition-delay: 500ms;
        transition-delay: 500ms;
    }

    .hint:before, [data-hint]:before {
        content: '';
        position: absolute;
        background: transparent;
        border: 6px solid transparent;
        z-index: 101;
    }

    .hint:after, [data-hint]:after {
        content: attr(data-hint);
        background: #383838;
        color: white;
        padding: 5px;
        font-size: 11px;
        line-height: 10px;
        white-space: normal;
        max-width: 225px;
        min-width: 225px;
        font-family: "courier";
        overflow: visible;
    }

[data-hint='']:before, [data-hint='']:after {
    display: none !important;
}

/**
 * set default color for tooltip arrows
 */

.hint--right:before {
    border-right-color: #336699;
}


/**
 * right tooltip
 */
.hint--right:before {
    margin-left: -12px;
    margin-bottom: -6px;
}

.hint--right:after {
    margin-bottom: -14px;
}

.hint--right:before, .hint--right:after {
    left: 100%;
    bottom: 50%;
}

.hint--right:hover:after, .hint--right:hover:before, .hint--right:focus:after, .hint--right:focus:before {
    -webkit-transform: translateX(8px);
    -moz-transform: translateX(8px);
    transform: translateX(8px);
}

.hint, [data-hint] {
    /**    * tooltip body    */
}

    .hint:after, [data-hint]:after {
        text-shadow: 0 -1px 0px black;
        box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.5);
    }

/**
 * Info
 */
.hint--info:after {
    background-color: #336699;
    text-shadow: 0 -1px 0px #193b4d;
}

/* Encryption Strength*/
.VeryPoorStrength, .WeakStrength, .AverageStrength, .GoodStrength, .ExcellentStrength {
    padding: 0px 5px 1px 5px;
    margin-top: 1px;
    margin-left: 15px;
    font-size: 11px;
}

.VeryPoorStrength {
    background: Red;
    color: White;
}

.WeakStrength {
    background: Red;
    color: White;
}

.AverageStrength {
    background: orange;
    color: black;
}

.GoodStrength {
    background: blue;
    color: White;
}

.ExcellentStrength {
    background: Green;
    color: White;
}

/* TABLE/Grid FOR DIVS */

.grid-container {
    display: grid;
    grid-template-rows: auto auto;
    overflow: auto;
    border: 1px solid lightgray;
}

    .grid-container .header {
        position: sticky;
        z-index: 1;
    }

    .grid-container .col-header {
        top: 0;
    }

    .grid-container .row-header {
        left: 0;
    }

    .grid-container .corner {
        top: 0;
        left: 0;
        z-index: 2;
    }

/*Style sheet for loading screen*/
.Loading {
    position: fixed;
    left: 50%;
    top: 25%;
    background-color: black;
    z-index: 100;
    height: 50px;
    width: 125px;
    margin-left: -75px;
    line-height: 50px;
    text-align: center;
    font-weight: bold;
    border-radius: 10px;
    color: white;
    display: flex;
    justify-content: space-around;
    padding-left: 25px;
    padding-right: 25px;
}

.LoadingOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); /* Semi-transparent background */
    z-index: 9999; /* Ensure it's above everything */
    display: flex;
}
