﻿* {
    /*outline: 1px solid red;*/
}

/*==============================================================================================*/
/* COLOR VARIABLES */

:root {
    --header-primary-color: #13223F;
    --header-primary-button-color: white;
    --primary-color: #13223F;
    --primary-color-hover: #3B7BA6;
    --link-color: #13223F;
    --primary-border-color: #AABCD2;
    --primary-background-color: #d8dfee;
    --modalbackground-color: #d8dfee;
    --card-background: #e5f1fb;
    --selected-background: #e5f1fb;
    --processing-button: #EE6123;
}

[data-theme="test"] {
    --header-primary-color: #FAF6EA;
    --header-primary-button-color: #13223F;
}

[data-theme="stellar"] {
    --header-primary-color: #A12186;
    --header-primary-button-color: white;
    --primary-color: #A12186;
    --primary-color-hover: #BD53A9;
    --card-background: #e5f1fb;
    --selected-background: #e5f1fb;
}

[data-theme="accent"] {
    --header-primary-color: #609966;
    --header-primary-button-color: white;
    --primary-color: #609966;
    --primary-color-hover: #40513B;
    --primary-background-color: #9DC08B;
    --modalbackground-color: #9DC08B;
    --card-background: #EDF1D6;
    --selected-background: #EDF1D6;
    --processing-button: #369; /*blue*/
}
/*==============================================================================================*/
/* PAGE STYLES */

body {
    font-family: "Helvetica Neue Custom","Helvetica Neue",Helvetica,Arial,sans-serif;
    color: white;
    /*background: #f1f1f1;*/
    background: white;
    font-size: 13px;
    margin: 0;
    padding: 0;
    overflow-y: scroll;
}

a, a:visited, a:active {
    text-decoration: none;
    color: black;
}

    a img {
        border: none;
    }

*, *:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.border {
    border: 1px solid black;
}

.no-padding {
    padding: 0;
}

.list-group-item {
    border-color: black;
}

    .list-group-item:last-child {
        border-radius: 0;
    }

    .list-group-item.active, .list-group-item.active:focus, .list-group-item.active:hover {
        background: #333;
        border-radius: 0;
        /*border-color: #333;*/
    }

.dropdown-menu {
    border-radius: 0;
    margin: 0;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.honeydew {
    background-color: #F0FFF0;
}

.fieldset-auto-width {
    display: inline;
}

.scheduler-border {
    border: solid 1px #DDD;
    padding: 10px;
    border-radius: 5px;
}

/*==============================================================================================*/
/*header*/

.MajorTitleStyle {
    text-align: right;
    width: 100%;
    padding-top: 8px;
    padding-bottom: 16px;
    font-family: Verdana;
    font-size: 14px;
    font-weight: bold;
}


.modal-headerbackground {
    background-color: var(--modalbackground-color);
}

.modal-footerbackground {
    background-color: var(--modalbackground-color);
}

.navbar-header {
    margin-left: -140px;
}

@media (max-width: 768px) {
    .navbar-header {
        margin-left: 10px;
    }
}

.navbar-custom {
    background-color: var(--primary-background-color);
    min-height: 50px;
    max-height: 50px;
}


.nav-link > li {
    display: inline;
    margin-right: 24px;
}

.logo {
    background-image: url('../images/logo/logo.png');
    background-position: center center;
    background-size: 80%;
    background-repeat: no-repeat;
    background-color: var(--primary-color);
    height: 40px;
    width: 150px;
    padding: 12px 0 0 12px;
}

.dropdown-menu {
    /*font-size: 13px;*/
    font-size: 13px;
}

.open {
    display: block;
}

/*==============================================================================================*/
/*Print*/

/*@media print {
    .pagebreak {
        clear: both;
        page-break-after: always;
    }
}*/

/*@media print {
    table {
        page-break-after: auto
    }

    tr {
        page-break-inside: avoid;
        page-break-after: auto
    }

    td {
        page-break-inside: avoid;
        page-break-after: auto
    }

    thead {
        display: table-header-group
    }

    tfoot {
        display: table-footer-group
    }*/





/*==============================================================================================*/
/*body*/
.fixed-body {
    margin-top: 100px;
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
    max-width: 1232px;
    min-width: 832px;
    margin-bottom: 90px;
}


/*==============================================================================================*/
/*BOXES*/

.dslcard {
    box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
    border: 1px solid lightgrey;
    border-radius: 5px;
    margin-bottom: 5px;
    padding: 8px;
}

    .dslcard.input {
        background-color: var(--card-background);
    }

.formbox {
    max-width: 100%;
    border: 1px solid var(--primary-color);
    /*text-align: left;*/
    background: white;
    max-height: 100%;
    margin: 16px;
    /*margin-top: 16px;
    margin-left: auto;
    margin-right: auto;*/
    /*    min-height: calc(100vh - 142px);*/
}

.formboxtitle {
    background: var(--primary-color);
    color: white;
    /*min-height: 40px;*/
    min-height: 30px;
    vertical-align: middle;
    /*padding: 14px;*/
    padding: 8px;
}

.toolboxbar {
    text-align: left;
    background: var(--primary-background-color);
    color: white;
    /*min-height: 46px;*/
    min-height: 30px;
    vertical-align: middle;
    /*padding: 8px 8px 8px 8px;*/
    padding: 6px 6px 6px 6px;
    border-bottom: 1px solid #ced3d3;
}

.titlefont {
    text-align: left;
    font-size: 15px;
}

.pagetitle {
    font-size: 24px;
    padding: 5px 0 0 10px;
    color: dimgray;
}

.inputpanel {
    padding: 8px;
    color: black;
    background: white;
}

.aligncenter {
    text-align: center;
    padding: 8px;
}

.alignright {
    text-align: right;
}

.alignrightpadding {
    text-align: right;
    padding-right: 12px;
    vertical-align: top;
}

.buttonbar {
    float: right;
    padding: 5px 5px 0 10px;
}

/*==============================================================================================*/
/*BUTTONS */

.buttonbasic {
    /*    font-size: 13px;
    height: 30px;*/
    font-size: 12px;
    height: 24px;
    padding: 3px 6px 3px 6px;
    line-height: normal;
    text-decoration: none;
    border: 1px solid var(--primary-border-color);
    background-color: #f5f5f5;
    color: #585858;
}

    .buttonbasic:hover {
        background: #e5f1fb;
        border: 1px solid var(--primary-color);
        cursor: pointer;
    }

    .buttonbasic:disabled {
        background: rgb(235, 235, 228);
        border: none;
        cursor: not-allowed;
        opacity: 0.5;
    }

.buttonexcel {
    padding: 4px;
    margin-top: 4px;
    width: 100px;
    margin-bottom: 4px;
    background-color: var(--primary-color);
    min-height: 24px;
    max-height: 24px;
}

    .buttonexcel:hover {
        background: var(--primary-color-hover);
        cursor: pointer;
    }

.buttonexcelnew {
    margin: 2px 4px 8px 0;
    padding: 4px;
    float: right;
}

    .buttonexcelnew:hover {
        outline: 2px solid green;
        border-radius: 3px;
        /*background: lightgreen;*/

        cursor: pointer;
    }

.buttonprocessing {
    font-size: 12px;
    padding: 2px;
    text-decoration: none;
    text-align: center;
    border: solid;
    border-color: var(--primary-color);
    border-width: 1px;
    background-color: var(--processing-button);
    color: white;
    min-width: 100px;
    min-height: 24px;
    max-height: 24px;
    margin-top: 4px;
    margin-bottom: 4px;
}

.buttonpdf {
    margin: 2px 4px 8px 0;
    padding: 4px;
    float: right;
}

    .buttonpdf:hover {
        outline: 2px solid black;
        border-radius: 3px;
        /*background: lightgreen;*/

        cursor: pointer;
    }


.signout {
    padding: 0 8px 0 8px;
    cursor: pointer;
}

    .signout:hover {
        background: white;
        color: #000000;
        cursor: pointer;
    }

.linkbutton {
    color: black;
}

    .linkbutton.aspNetDisabled {
        opacity: 0.5;
        cursor: default;
        user-select: none;
    }

.linkbuttonreadonly {
    color: darkgrey;
}

.linkbuttonblue {
    color: var(--primary-color);
}

/*==============================================================================================*/
/*INPUT CONTROLS*/

.grid-checkbox input[type=checkbox] {
    height: 16px;
    width: 16px;
}

input:disabled, select:disabled, textarea:disabled {
    background-color: rgb(235, 235, 228);
}

.readonly {
    background-color: rgb(235, 235, 228);
}

.combobox {
    /*font-size: 13px;*/
    /*font-size: 12px;*/
    color: black;
    border: 1px solid var(--primary-border-color);
    /*padding: 6px;*/
    padding: 3px;
    vertical-align: top;
}

.sidepanelcombobox {
    padding: 2px;
    border-collapse: separate;
    border-spacing: 5px;
    background-color: white;
    border: 1px solid lightgrey;
    border-radius: 4px;
    font-size: 11px;
    color: darkslategrey;
    text-transform: uppercase;
}

.checkbox {
    height: 18px;
    width: 18px;
}

.displaylabel {
    font-size: 12px;
    color: black;
    padding: 10px;
    line-height: normal;
    vertical-align: top;
}

.textbox {
    font-size: 12px;
    color: black;
    border: 1px solid var(--primary-border-color);
    padding: 3px;
    line-height: normal;
    vertical-align: top;
}

    .textbox:focus {
        border-color: var(--primary-color);
        box-shadow: 0 0 1px var(--primary-color);
        outline: none;
    }

.textboxlarge {
    font-size: 12px;
    color: black;
    border: 1px solid var(--primary-border-color);
    padding: 3px;
    line-height: normal;
    min-width: 250px;
}

    .textboxlarge:focus {
        border-color: var(--primary-color);
        box-shadow: 0 0 1px var(--primary-color);
        outline: none;
    }

/*==============================================================================================*/
/*MESSAGES*/

.blankform {
    margin: 0 auto;
    height: 36px;
    width: 48px;
    border: 1px solid var(--primary-border-color);
}

.blankhead {
    background: #eeeeee;
    min-height: 6px;
    border-bottom: 1px solid var(--primary-border-color);
}

.nodatapanel {
    background: white;
    padding: 8px;
    border: 1px solid var(--primary-border-color);
}

.DisplayFormMessage {
    background: white;
    padding-top: 8px;
    padding-bottom: 24px;
    text-align: center;
    color: black;
    /*font-size: 13px;*/
    font-size: 12px;
}

.formmessage {
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 12px;
    max-width: 100px;
    margin-top: 5px;
}

/*==============================================================================================*/
/* GRID TABLE */

.scrollgrid {
    overflow-x: auto;
    overflow-y: auto;
    /*max-height: 60vh;*/
    width: 100%;
    white-space: nowrap;
}

.grid {
    /*font-size: 12px;*/
    font-size: 12pt;
    font-weight: normal;
    color: black;
    width: 100%;
    border: 1px solid var(--primary-border-color);
}

    .grid tr {
        overflow: hidden;
        vertical-align: top;
        min-height: 14px;
    }

        .grid tr:hover {
            overflow: hidden;
            cursor: pointer;
            border: 1px solid var(--primary-border-color);
            background-color: var(--card-background);
        }

    .grid td {
        padding: 4px;
        vertical-align: top;
        border: 1px solid var(--primary-border-color);
    }

    .grid a {
        color: var(--link-color);
    }

        .grid a:hover, a:visited, a:active {
            text-decoration: underline;
            color: var(--link-color);
        }

.hidden {
    display: none !important;
    visibility: hidden !important;
}

.griddisplaynone {
    display: none;
}

.gridheader {
    overflow: hidden;
    white-space: nowrap;
    font-size: 12px;
    font-weight: normal;
    color: black;
    background: var(--primary-background-color);
    padding: 2px;
    padding-left: 4px;
    border: 1px solid var(--primary-border-color);
}

    .gridheader a {
        text-decoration: underline;
        color: var(--link-color);
    }

        .gridheader a:hover, a:visited, a:active {
            text-decoration: underline;
            color: var(--link-color);
        }

.gridheadercenter {
    overflow: hidden;
    white-space: nowrap;
    font-size: 12px;
    font-weight: normal;
    color: black;
    background: var(--primary-background-color);
    padding: 2px;
    padding-left: 4px;
    border: 1px solid var(--primary-border-color);
    text-align: center;
}

    .gridheadercenter a {
        text-decoration: underline;
        color: var(--link-color);
    }

        .gridheadercenter a:hover, a:visited, a:active {
            text-decoration: underline;
            color: var(--link-color);
        }


.gridheaderright {
    overflow: hidden;
    white-space: nowrap;
    font-size: 12px;
    font-weight: normal;
    color: black;
    background: var(--primary-background-color);
    padding: 2px;
    padding-left: 4px;
    border: 1px solid var(--primary-border-color);
    text-align: right;
}

    .gridheaderright a {
        text-decoration: underline;
        color: var(--link-color);
    }

        .gridheaderright a:hover, a:visited, a:active {
            text-decoration: underline;
            color: var(--primary-color);
        }

.bgwhite {
    background: white;
}

.gridrow {
    font-size: 12px;
    color: black;
    text-align: left;
    border: 1px solid var(--primary-border-color);
    /*padding:  4px 0 4px 8px;*/
    /*line-height: 28px;*/
    line-height: 16px;
    padding: 2px;
    padding-left: 4px;
    vertical-align: top;
}

.gridrowright {
    /*font-size: 13px;*/
    font-size: 12px;
    text-align: right;
    color: black;
    border: 1px solid var(--primary-border-color);
    /*padding: 4px 8px 4px 0;*/
    /*line-height: 28px;*/
    line-height: 16px;
    padding: 2px;
    padding-left: 4px;
    vertical-align: top;
}

.gridrowcenter {
    /*font-size: 13px;*/
    font-size: 12px;
    color: black;
    text-align: center;
    border: 1px solid var(--primary-border-color);
    padding: 2px;
    /*line-height: 28px;*/
    line-height: 16px;
    padding-left: 4px;
    vertical-align: top;
}

.gridrowheight {
    line-height: 16px;
}

.gridrowsmall {
    font-size: 12px;
    color: black;
    text-align: left;
    line-height: 16px;
    padding: 4px;
    border: 1px solid var(--primary-border-color);
}

.gridaligntop {
    vertical-align: top;
}

.griderrortext {
    color: red;
}

.gridbluetext {
    color: blue;
}

.gridpager {
    font-size: 20px;
    color: black;
    text-align: center;
    line-height: 30px;
    padding: 10px;
    vertical-align: top;
}

    .gridpager td {
        padding-left: 10px;
        padding-right: 10px;
        border: none;
    }


/*==============================================================================================*/
/* GRID BUTTON IMAGES */

.dslicons {
    text-decoration: none;
    color: var(--primary-color);
    font-size: 14px;
}

    .dslicons:hover {
        color: var(--primary-color);
        text-decoration: none;
    }

    .dslicons.delete {
        text-decoration: none;
    }

        .dslicons.delete:hover {
            color: brown;
            text-decoration: none;
        }

/*==============================================================================================*/
/* PACE & WIDTH */

.flex-width360 {
    min-width: 380px;
    max-width: 380px;
}

.flex-width800 {
    min-width: 800px;
    max-width: 800px;
}



.ctrlalign {
    padding: 3px;
}

.space4 {
    height: 4px;
    margin: 0 auto;
}

.space8 {
    height: 8px;
    margin: 0 auto;
}

.space12 {
    height: 12px;
    margin: 0 auto;
}

.space16 {
    width: auto;
    height: 16px;
}

.space24 {
    width: auto;
    height: 24px;
}

.space32 {
    margin: 0 auto;
    height: 32px;
}

.width0100 {
    width: 100%;
}

.width075 {
    width: 75%;
}

.width050 {
    width: 50%;
}

.width20 {
    max-width: 20px;
}

.width80 {
    max-width: 80px;
}

.width100 {
    max-width: 100px;
}

.width120 {
    max-width: 120px;
}

.width130 {
    max-width: 130px;
}

.width140 {
    max-width: 140px;
}

.width160 {
    max-width: 160px;
}

.width180 {
    max-width: 180px;
}

.width200 {
    max-width: 200px;
}

.width240 {
    max-width: 240px;
}

.width300 {
    max-width: 300px;
}

.width1200 {
    max-width: 100%;
}

/*==============================================================================================*/
/*DSL REPORTING CSSS*/
.norecordsfound {
    background-color: var(--card-background);
    border: 1px solid lightgrey;
    padding: 10px;
}

.rptnorecordsfound {
    background-color: var(--card-background);
    border: 1px solid lightgrey;
    color: black;
    padding: 10px;
}


.rptgridheader {
    font-size: 13px;
    text-align: left;
    border: var(--primary-color);
    color: black;
    background-color: var(--primary-background-color);
    font-weight: normal !important;
}

.rptaligncentre {
    text-align: center;
}

.rptaligntop {
    vertical-align: top;
}

.rptalignmiddle {
    vertical-align: middle;
}

.rptalignbottom {
    vertical-align: bottom;
}

.rptalignright {
    text-align: right;
}

.fieldset-auto-width {
    display: inline;
}

.selectedlink {
    width: 100%;
    color: black;
}

.rptcardtitle {
    font-family: Calibri, Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: darkslategrey;
    vertical-align: top;
    text-transform: uppercase;
}

.rptworkspace {
    font-size: 13px;
    /*font-weight: normal;*/
    color: black;
    /*width: auto;*/
}

    .rptworkspace td {
        /*padding: 2px 4px 2px 4px;*/
        padding: 5px;
    }

.rptdatagrid {
    font-size: 13px;
    font-weight: normal;
    color: black;
    width: auto;
    border: 1px solid var(--primary-border-color);
}

    .rptdatagrid td {
        padding: 5px;
        border: 1px solid var(--primary-border-color);
    }

    .rptdatagrid tr:hover {
        background-color: #DCE6F4;
        cursor: default;
    }

    .rptdatagrid.headerrow {
        color: black;
        background-color: var(--primary-background-color);
    }

        .rptdatagrid.headerrow:hover {
            text-decoration: none;
            color: black;
            background-color: var(--primary-background-color);
        }

.rptdatagridnohover {
    font-size: 13px;
    font-weight: normal;
    color: black;
    width: auto;
    border: 1px solid var(--primary-border-color);
}

    .rptdatagridnohover td {
        padding: 5px;
        border: 1px solid var(--primary-border-color);
    }

.flex-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-content: space-between;
    align-items: flex-start;
}

.flex-child {
    padding: 10px;
}

.trackstock-logo {
    font-size: 36px;
    font-family: 'Libre Franklin', sans-serif;
    color: var(--header-primary-button-color);
    font-style: italic;
}

    .trackstock-logo:hover {
        color: var(--header-primary-button-color);
        cursor: pointer;
    }

.top-link {
    background-color: var(--header-primary-color);
    color: var(--header-primary-button-color) !important;
}

    .top-link a {
        color: var(--header-primary-button-color) !important;
    }

        .top-link a:hover {
            color: var(--header-primary-button-color) !important;
            text-decoration: underline !important;
        }

        .top-link a:active {
            color: var(--header-primary-button-color) !important;
            text-decoration: underline !important;
        }

.contentx {
    min-height: calc(100vh - 220px);
    max-height: 100%;
    /*padding-left: 10px;*/
    max-width: 100%;
    margin: 10px;
    color: black;
}

.cardtitle {
    font-family: Calibri, Arial, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: darkslategrey;
    vertical-align: top;
    text-transform: uppercase;
}

.card > ul {
    padding: 8px 0 8px 20px;
}

.button {
    font-size: 12px;
    padding: 2px;
    text-decoration: none;
    text-align: center;
    border: solid;
    border-color: var(--primary-color);
    border-width: 1px;
    background-color: var(--primary-color);
    color: white;
    min-width: 100px;
    min-height: 24px;
    max-height: 24px;
    margin-top: 4px;
    margin-bottom: 4px;
    /*margin-left: 2px;*/
}

    .button:hover {
        background: var(--primary-color-hover);
        border-color: var(--primary-color-hover);
        border-width: 1px;
        cursor: pointer;
    }

    .button:disabled {
        font-size: 12px;
        padding: 3px 6px 3px 6px;
        line-height: normal;
        text-decoration: none;
        border: none;
        background-color: grey;
        color: white;
    }

    .button:focus {
        background-color: var(--primary-color-hover);
    }

.buttonsave {
    font-size: 12px;
    padding: 2px;
    text-decoration: none;
    text-align: center;
    border: solid;
    border-color: var(--primary-color);
    border-width: 1px;
    background-color: var(--primary-color);
    color: white;
    min-width: 100px;
    min-height: 24px;
    max-height: 24px;
    margin-top: 4px;
    margin-bottom: 4px;
    margin-left: 2px;
}

    .buttonsave:hover {
        background: var(--primary-color-hover);
        border-color: var(--primary-color-hover);
        cursor: pointer;
    }

.buttonexit {
    font-size: 12px;
    padding: 2px;
    text-decoration: none;
    text-align: center;
    border: solid;
    border-color: var(--primary-color);
    border-width: 1px;
    background-color: var(--primary-color);
    color: white;
    min-width: 100px;
    min-height: 24px;
    max-height: 24px;
    margin-top: 4px;
    margin-bottom: 4px;
    margin-left: 2px;
}

    .buttonexit:hover {
        background: var(--primary-color-hover);
        border-color: var(--primary-color-hover);
        cursor: pointer;
    }

.buttonclose {
    font-size: 12px;
    padding: 2px;
    text-decoration: none;
    text-align: center;
    border: solid;
    border-color: var(--primary-color);
    border-width: 1px;
    background-color: white;
    min-width: 100px;
    color: var(--primary-color);
    min-width: 100px;
    min-height: 24px;
    max-height: 24px;
    margin-top: 4px;
    margin-bottom: 4px;
}

    .buttonclose:hover {
        background: #e5f1fb;
        cursor: pointer;
    }

    .buttonclose:disabled {
        padding: 3px 6px 3px 6px;
        line-height: normal;
        text-decoration: none;
        border: none;
        background-color: grey;
        color: white;
    }

.buttonpageclose {
    font-size: 12px;
    padding: 2px;
    text-decoration: none;
    text-align: center;
    border: solid;
    border-color: var(--primary-color);
    border-width: 1px;
    background-color: white;
    min-width: 100px;
    color: var(--primary-color);
    min-height: 24px;
    max-height: 24px;
    margin-top: 4px;
    margin-bottom: 4px;
    margin-left: 2px;
}

    .buttonpageclose:hover {
        background: #e5f1fb;
        border-color: #e5f1fb;
        cursor: pointer;
    }

.buttonmodalnavigation {
    font-size: 12px;
    padding: 2px;
    text-decoration: none;
    text-align: center;
    border: solid;
    border-color: var(--primary-color);
    border-width: 1px;
    background-color: var(--primary-color);
    color: white;
    min-width: 50px;
    min-height: 24px;
    max-height: 24px;
    margin-top: 4px;
    margin-bottom: 4px;
    /*margin-left: 2px;*/
}

    .buttonmodalnavigation:hover {
        background: var(--primary-color-hover);
        border-color: var(--primary-color-hover);
        border-width: 1px;
        cursor: pointer;
    }

    .buttonmodalnavigation:disabled {
        font-size: 12px;
        padding: 3px 6px 3px 6px;
        line-height: normal;
        text-decoration: none;
        border: none;
        background-color: grey;
        color: white;
    }

    .buttonmodalnavigation:focus {
        background-color: var(--primary-color-hover);
    }


.smalltitleblack {
    font-family: Calibri, Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: darkslategrey;
    vertical-align: top;
    text-transform: uppercase;
}

.textsearchx {
    width: 100px;
    font-size: 13px;
    color: black;
    border: 1px solid var(--primary-border-color);
    padding: 3px;
    line-height: normal;
}

.comboboxsearchx {
    font-size: 13px;
    color: black;
    border: 1px solid var(--primary-border-color);
    padding: 3px;
    width: 100px
}

.fieldtitle {
    font-family: Calibri, Arial, Helvetica, sans-serif;
    font-size: 12px;
    color: darkslategrey;
    /*vertical-align: top;*/
    text-transform: uppercase;
}

.fieldtext {
    font-family: Calibri, Arial, Helvetica, sans-serif;
    font-size: 13px;
}

.fieldtable {
    font-size: 12px;
    font-weight: normal;
    color: black;
    width: 100%;
    border: 0px;
}

    .fieldtable tr {
        overflow: hidden;
        vertical-align: top;
        min-height: 14px;
    }

    .fieldtable td {
        padding: 4px;
        vertical-align: top;
        border: 0px;
    }

.commandbar {
    padding: 20px 0 20px 0;
}

.excelbutton {
    padding: 0 4px 4px 2px;
}

.datepick {
    padding-left: 4px;
    max-width: 100px;
    max-height: 20px;
    /*font-size: 13px;*/
    text-transform: uppercase;
    background-image: url('/images/calendar.png');
    background-position: right;
    background-repeat: no-repeat;
}

.errorpanel {
    padding: 4px;
    background-color: antiquewhite;
    color: black;
    border: 1px solid black;
}

.errormessage {
    text-transform: lowercase;
    font-variant: small-caps;
    margin: auto;
}

.errorbutton {
    font-size: 12px;
    font-weight: bold;
    margin-left: 10px;
    text-decoration: none;
    text-align: center;
    border: 1px solid black;
    background-color: var(--card-background);
    color: black;
    min-width: 20px;
    border-radius: 3px;
    vertical-align: top;
}

.commands-column {
    background-color: var(--card-background);
}

.excelbuttontext {
    text-decoration: none;
    margin: auto;
    font-size: 12px;
    color: white;
}

.excelbuttonimage {
    background: white;
}

.buttonblank {
    font-size: 12px;
    /*margin: 3px 10px 3px 10px;*/
    line-height: normal;
    text-decoration: none;
    background-color: white;
    color: #585858;
    border: none;
}

    .buttonblank:hover {
        background: #e5f1fb;
        cursor: pointer;
    }

.grid-row-highlight {
    background: var(--selected-background);
    cursor: pointer;
    border: 1px solid darkgrey;
}

.selected {
    background: var(--selected-background);
    cursor: pointer;
    border: 1px solid darkgrey;
}


.divgrid {
    max-width: calc(100vw - 175px);
}

.inputtable {
    padding: 2px;
    border-collapse: separate;
    border-spacing: 5px;
    background-color: var(--card-background);
    border: 1px solid lightgrey;
    border-radius: 4px;
    font-size: 11px;
    color: darkslategrey;
    text-transform: uppercase;
    vertical-align: top;
}

.autocompletegrid {
    font-size: 12px;
    font-weight: normal;
    color: black;
    width: 100%;
}

    .autocompletegrid tr {
        vertical-align: top;
    }

        .autocompletegrid tr:hover {
            background-color: forestgreen;
            cursor: pointer;
        }

.favicons {
    margin-left: 15px;
    opacity: 0.5;
}

.nowrap {
    white-space: nowrap;
}

ul.ui-autocomplete {
    /*border-radius: 15px;*/
    max-height: 500px;
    overflow-y: scroll;
    overflow-x: hidden;
    width: 500px;
    color: blue !important;
    font-size: 12px;
    border: none;
}

.custom-ui-item {
    color: darkslategrey;
    font-size: 12px;
    border: none;
}

    .custom-ui-item:hover {
        background-color: #0000ffA5;
    }

.XLNUMBER {
}

.XLNUMBER2 {
}

.XLDATE {
}

.XLTEXT {
}

.XLHIDECOLUMN {
}

.gridinput {
    padding: .5rem;
    background-color: var(--card-background);
    border: 1px solid lightgrey;
    border-radius: 4px;
    font-family: Calibri, Arial, Helvetica, sans-serif;
    font-size: 12px;
    color: darkslategrey;
    text-transform: uppercase;
    vertical-align: top;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: .5rem;
    align-items: center;
    margin-bottom: 10px;
}

.hozLine {
    width: 100%;
    padding-top: 8px;
    padding-bottom: 16px;
    border-bottom: 1px solid #000000;
}

.hozLineNoPadding {
    width: 100%;
    padding-top: 2px;
    padding-bottom: 2px;
    border-bottom: 1px solid #000000;
}
/* Ensure <pre> wraps long lines */
 .tidypretag {
    white-space: pre-wrap; /* Wrap text but keep line breaks */
    word-wrap: break-word; /* Break long words if needed */
    font-family: inherit; /* Match surrounding font */
    margin: 0; /* Remove default <pre> margin */
}