.platinum{
    background-color: gainsboro;
}


.partsComplete{
    background-color: lightgreen;
}


.RECEIVED{
    background-color: lightgreen;
}


.waitingForParts{
    background-color: yellow;
}


.ORDERED{
    background-color: yellow;
}


.noParts{
    background-color: pink;
}


.NOT_ORDERED{
    background-color: pink;
}


.RETURNED{
    background-color: orange;
}


.heading{
    font-size: large;
    font-weight: bold;
    background-color: black;
    color: white;
    text-align: center;
}


.greenOnWhite{
    background-color: lightgreen;
    color: white;
}


.whiteOnGreen{
    background-color: green;
    color: white;
}


.redOnWhite{
    color: red;
}


.lightGreen {
    background-color: lightgreen;
}


.underway {
    background-color: yellow;
}


.notStarted {
    background-color: pink;
}


.lightBlue {
    background-color: lightblue;
}


.white {
    background-color: white;
}


.active{
    background-color: white;
    color: black;
    border: 2px solid gray;
}


.inactive{
    background-color: black;
    color: white;
    border: 1px solid white;
}


.showBorders{
    border: 2px solid black;
}


.thinBorders{
    border: 1px solid black;
}


.whiteBorders{
    border: 1px solid white;
}

.someUnordered{
 /*   color: white;     */
    background-color: orange;
}


.orange{    
    background-color: orange;
}


a.arrow{
    text-decoration: none;
}


.red{
    border-color: red;
    border-width:4;
}


.whiteOnRed{
    background-color: red;
    color: white;
}

.bgLiteGrey{
    background-color: lightgray;
}


.liteGrayBorder{
    border-color: lightgray;
}

.bottomBorderOnly{
    border-bottom-style: groove;
}

.table-hover tbody tr:hover {
    background-color: white;
}

/** Insurance Companies Background Colors **/

.ALLSTATE{  /*  Allstate Insurance */
    background-color: red;
}


.STATE{     /* State Farm */
    background-color: red;
}

.MERCURY{
    background-color: pink;
}

.AUTO{
    background-color: pink;
}

.DEALER{
    background-color: white;
    color : white;
}

.USAA{
    background-color: pink;
}

.OTHER{
    background-color: white;
}
/** End Insurance Companies Background Colors **/

@font-face {
    font-family: 'PartsAppFont';
    src: url('BlackOpsOne-Regular.ttf') format('truetype');
}

.PartsAppHeading{
    font-family: 'PartsAppFont';
    font-size: large;
    font-weight: bold;
    background-color: black;
    color: white;
    text-align: center;
}


/*** Styling for scrollable tables ***/
body {

    height: 100%;
    width:  100%;
    margin:  0;
    padding: 0;
}

.scrollable_table {
    /* This creates a fixed height container that will scroll */
    max-height: 80%;
/*    max-height: 710px; */   
    overflow-y: auto;
}

.tblHeader {
    /* Ensures proper layout */
    border-collapse: collapse;

    thead{

        /* Makes the header stick to the top of its scrolling container */
        position: sticky;
        top: 0;

        /* Adds a background color so content doesn't show through the header */
        
        background-color: #000;
        
        /* Ensures the header stays on top of the scrolling body content */
        z-index: 1;
    }    
}

/*** End of styling for scrollable tables ***/
