/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

#PageTitle {
    font-size: 14pt;
    font-family: Arial,Helvetica,sans-serif;
    font-weight: bold;
    margin-top: 25px;
    margin-bottom: 0px;
    text-align: center;
    text-decoration: none;
    color: Black;
    width: 100%;
}

#PageSubTitle {
    font-size: 8pt;
    font-family: Arial,Helvetica,sans-serif;
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 5px;
    text-align: center;
    text-decoration: none;
    color: Green;
    width: 100%;
}

body {
    background: #f5f5f5;
    font-weight: normal;
    text-align: center;
}
.table-container {
    display: flex;
    gap: 5px;
    height: auto;
    width: 100%; 
}

@keyframes flash-bg {
    0% {
        background-color: transparent;
    }

    50% {
        background-color: #FF0000;
    }
    /* Change this to your desired flash color */
    100% {
        background-color: transparent;
    }
    
}


.flashing-cell {
    animation: flash-bg 1s infinite; 
    padding: 5px;
    display: block;
    
}


table {
    font-size: 8pt;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: normal;
    margin: 5px auto;
    padding: 0;
    vertical-align: text-top;
    width: 85%;
    border-collapse: collapse;
    border-spacing: 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

tbody {
    border-radius: 10px;
    
}

table table tr:hover td {
    border-color: Silver;
    color: Black;
}

table th {
    background-color: #026bad;
    border: 1px solid #F9F6EE; /* ✅ match td */
    font-weight: bold;
    padding: 1px 5px;
    text-align: center;
    color: #F9F6EE;
}

table td {
    border: 1px solid #F9F6EE;
    color: black;
    font-weight: bold;
    padding: 1px 5px;
    text-align: center;
}

/* Top-left corner */
/* Top row */
table tr:first-child > *:first-child {
    border-top-left-radius: 10px;
}

table tr:first-child > *:last-child {
    border-top-right-radius: 10px;
}

/* Bottom row */
table tr:last-child > *:first-child {
    border-bottom-left-radius: 10px;
}

table tr:last-child > *:last-child {
    border-bottom-right-radius: 10px;
}

table tr:nth-child(even) {
    background: #d1d1d1;
}

table tr:nth-child(odd) {
    /* background: #F1F1F1;*/
    background: white;
}

input {
    border: 1px solid Silver;
    border-radius: 5px;
    color: black;
    font-size: 12px;
    font-weight: bold;
    margin: 3px 3px 3px 1px;
    padding: 2px 2px 2px 2px;
}

    input:focus {
        outline: none;
    }

    input.CheckBox {
        height: 20px;
        width: 20px;
        margin-bottom: 5px;
        vertical-align: middle;
    }

    input.RadioBox {
        height: 20px;
        width: 20px;
        margin-bottom: 5px;
        vertical-align: middle;
    }

    input[type="date"] {
        border: 1px solid Silver;
        border-radius: 5px;
        color: Green;
        font-weight: bold;
        font-family: Arial,Helvetica,sans-serif;
        margin: 3px 3px 3px 1px;
        padding: 2px 2px 2px 2px;
        line-height: 10px;
    }

form {
    display: inline;
}

select {
    border-width: 1px;
    border-style: solid;
    border-color: Silver;
    border-radius: 8px;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    color: black;
    cursor: pointer;
    font-family: Arial,Helvetica,sans-serif;
    font-weight: bold;
    font-size: 10px;
    margin: 3px 3px 3px 3px;
    padding: 2px 2px 2px 2px;
    text-align: left;
    text-transform: uppercase;
}

a:link {
    cursor: pointer;
    text-decoration: underline;
}

a:hover {
    color: Red;
    text-decoration: none;
}

html {
    scroll-behavior: smooth;
}

#TopDIV {
    background-color: white;
    border: 0px;
    border-radius: 10px;
    border-width: 1px;
    display: inline-block;
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
    height: 55px;
    width: 90%;
    vertical-align: middle;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

#MenuDIV {
    float: right;
    margin-top: 12px;
    margin-right: 20px;
    width: 80%;
}

#TitleDIV {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 5px;
}

#MainDIV {
    margin-left: auto;
    margin-right: auto;
    vertical-align: top;
    width: 90%;
}

#WarningDIV {
    font-size: 7pt;
    width: 50%;
    color: #a3afab;
    font-family: Arial,Helvetica,sans-serif;
    background: #f5f5f5;
    margin: auto;
}

#WaitDIV {
    background: white;
    position: absolute;
    top: 40%;
    left: 48%;
    visibility: hidden;
}

#WaitIMG {
    border-width: 1px;
    border-style: solid;
    padding: 5px;
}

#NotifyDIV {
    background-color: white;
    border-width: 0px;
    position: fixed;
    top: 2%;
    left: 96%;
}

#NotifyIMG {
    cursor: pointer;
    height: 40px;
    width: 40px;
}

#SqlJobQueueDIV {
    position: fixed;
    top: 2%;
    left: 2%;
}

#SqlJobQueueIMG {
    cursor: pointer;
    height: 30px;
    width: 30px;
}

#SearchContentDIV {
    cursor: pointer;
    margin: auto;
    width: 50%;
}

#SearchResultsDIV {
    cursor: pointer;
    font-size: small;
}

#Synopsis {
    border-radius: 10px;
    font-size: 8pt;
    font-family: Arial,Helvetica,sans-serif;
    height: 100px;
    margin: 10px;
    width: 95%;
}

#PasswordResetDIV {
    width: 33%;
    margin: auto;
    padding: 20px;
    border: #000000 3px solid;
    border-radius: 10px;
    text-align: center;
}

.CenterBottom {
    border: 0;
    position: fixed;
    top: 95%;
    left: 47%;
}

.DashboardTABLE {
    background-color: Blue;
    border-color: Silver;
    border-width: 1px;
    border-spacing: 2px;
    border-style: solid;
    font-size: 10pt;
    font-weight: Bold;
    margin: 1px auto 1px auto;
}

    .DashboardTABLE th {
        border-color: Blue;
        border-width: 0px;
        color: White;
        height: 30px;
        text-align: center;
    }

.MobileTABLE {
    font-size: 14pt;
    font-weight: Bold;
    margin: 15px auto 15px auto;
    width: 30%
}

    .MobileTABLE th {
        padding: 10px;
    }

    .MobileTABLE td {
        padding: 15px;
    }

    .MobileTABLE select {
        font-size: 14pt;
    }

.DIV_TAG_ENTRY {
    background: White;
    border-style: solid;
    border-color: Black;
    border-width: 1px;
    color: #708090;
    margin: 40px auto 15px auto;
    padding: 10px;
    width: 85%;
}

.DIV_FAC_CLIENT {
    border-width: 0px;
    /* color: green; */
    font-size: 10px;
    font-weight: bold;
    margin: 40px auto 15px auto;
    text-align: center;
}

.DIV_TITLEBOX {
    background-color: White;
    border-width: 1px;
    border-style: solid;
  
    border-spacing: 1px;
    border-radius: 8px;
    color: Green;
    font-size: 10pt;
    font-family: Tahoma;
    font-weight: bold;
    margin: 40px auto 15px auto;
    text-transform: uppercase;
    width: 40%;
}

.HighlightRow {
    color: Red;
}

.HighlightCell {
    color: Red;
}

.ReadOnlyBox {
    background-color: lightgray;
    text-align: center;
}

#SubTotalRow {
    background-color: Navy;
    color: Yellow;
}

#TotalRow {
    background-color: Black;
    color: Yellow;
}

.PageButton {
    border-color: Black;
    border-style: solid;
    border-width: 1px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 8pt;
    font-weight: normal;
    width: 90px;
}

    .PageButton:hover {
        background: Black;
        color: White;
    }

.Links {
    text-decoration: underline;
    font-size: 14pt;
    font-weight: bold;
    font-family: Arial,Helvetica,sans-serif;
    color: White;
    cursor: pointer;
}

    .Links:hover {
        color: White;
        text-decoration: none;
    }

.CopyrightNotice {
    text-decoration: none;
    font-size: 7pt;
    font-family: "Arial","Helvetica","sans-serif";
    color: #A3AFAB;
}

a img {
    border: 0;
}

.ImgButton {
    border: 0;
    cursor: pointer;
    vertical-align: middle;
}

.SuggestLink {
    background-color: #F0F0F0;
    font-size: 8pt;
    font-family: Arial,Helvetica,sans-serif;
    padding: 2px 6px 2px 6px;
}

.SuggestLinkOver {
    background-color: #632a2a;
    color: #FFFFFF;
    cursor: pointer;
    font-size: 10pt;
    font-family: Arial,Helvetica,sans-serif;
    padding: 2px 6px 2px 6px;
}

.Shout {
    color: Black;
    font-size: 20pt;
    font-family: Arial,Helvetica,sans-serif;
    font-weight: bold;
}

.Circle {
    background: black;
    border: 1px solid yellow;
    border-radius: 100%;
    color: white;
    float: left;
    font-weight: bold;
    height: 80px;
    margin: 5px;
    padding: 5px;
    text-align: center;
    vertical-align: middle;
    white-space: normal;
    width: 80px;
}

    .Circle:hover {
        background: white;
        color: black;
    }

.CircleDockDoor {
    background: black;
    border: 2px solid White;
    border-radius: 100%;
    color: white;
    font-weight: bold;
    height: 75px;
    text-align: center;
    width: 75px;
}

.Digit {
    background: red;
    border: 2px solid yellow;
    border-radius: 10px;
    color: white;
    float: left;
    font-size: 20pt;
    font-weight: bold;
    height: 80px;
    margin: 2px;
    padding: 5px;
    text-align: center;
    vertical-align: middle;
    white-space: normal;
    width: 80px;
}

.Oval {
    background: black;
    border-radius: 10px;
    color: white;
    float: left;
    font-weight: bold;
    height: 50px;
    margin: 5px;
    padding: 5px;
    text-align: center;
    vertical-align: middle;
    white-space: normal;
    width: 250px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

    .Oval:hover {
        background: #24A0ED;
        color: white;
    }

.Red {
    background: red;
    border: 0px;
    color: white;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.Blue {
    border-color: #026bad;
    border: 3px;
    color: white;
    background: #026bad;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.Green {
    background: green;
    border: 0px;
    color: white;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.Orange {
    background: orange;
    border: 0px;
    color: white;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.Cyan {
    background: cyan;
    border: 0px;
    color: white;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.LightGreen {
    background: lightgreen;
    border: 0px;
    color: white;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.Purple {
    background: purple;
    border: 0px;
    color: white;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.Brown {
    background: brown;
    border: 0px;
    color: white;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.Gold {
    background: gold;
    border: 0px;
    color: white;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.Password {
    background-color: transparent;
    border-color: black;
    border-width: 0px;
    font-size: 24pt;
    text-align: center;
}

.Picking {
    background: black;
    border: 3px solid red;
    color: white;
}
