@charset "utf-8";
/* CSS Styling Document for FBA Calculator */

header {
    font-family: Consolas, monospace;
    font-size: 1em;
    width: 100%;
}

body {
    font-family: Consolas, monospace;
    font-size : 0.7em;
    width: 100%;
    align-content: center;
    margin: 0;
    padding: 0;
}

.frmInput {
    font-family: Consolas, monospace;
    font-size: 1em;
}

.frmInputRed {
    font-family: Consolas, monospace;
    font-size: 1em;
    color: red;
}

.frmSubmit {
    font-family: Consolas, monospace;
    font-size: 1em;
}

.frmPageNo {
    font-family: Consolas, monospace;
    font-size: 1em;
}

.frmPrompt {
    font-weight: bold;
    vertical-align: top;
    text-align: left;
}

.frmData {
    font-family: Consolas, monospace;
    font-size : 1em;
    vertical-align: top;
    text-align: left;
}

.fSet {
    padding-top: 3px;
    padding-right: 3px;
    padding-left: 3px;
    padding-bottom: 3px;
}

.tblBanner {
    font-weight: bold;
    font-size: 1.3em;
    vertical-align: bottom;
    text-align: left;
    background-color: #b4cdcd;
}

.tblHdr {
    font-weight: bold;
    vertical-align: bottom;
    text-align: left;
    background-color: #b4cdcd;
}

.tblHdrNum {
    font-weight: bold;
    vertical-align: bottom;
    text-align: right;
    background-color: #b4cdcd;
}

.tblDetNum{
    vertical-align: top;
    text-align: right;
}

.tblDetNumMid{
    vertical-align: middle;
    text-align: right;
}

.tblDetNumNeg{
    vertical-align: top;
    text-align: right;
    font-weight: bold;
    color: red;
}

.tblDetNumNegMid{
    vertical-align: middle;
    text-align: right;
    font-weight: bold;
    color: red;
}

.tblDetChr{
    vertical-align: top;
    text-align: left;
}

.tblDetChrCtr{
    vertical-align: top;
    text-align: center;
}

.tblDetChrMid{
    vertical-align: middle;
    text-align: left;
}

.tblDetMand{
    vertical-align: top;
    text-align: left;
    color: crimson;
    font-weight: bold;
}

.tblDetParent{
    vertical-align: top;
    text-align: left;
    color: cadetblue;
    font-weight: bold;
}

.tblBoiler{
    vertical-align: top;
    text-align: left;
    color: crimson;
    font-weight: bold;
    font-style: italic;
}

.resultsTableContainerBackup {
    width: 50%;
    height: 400px;
    border-bottom: 1px solid #999;
}

.resultsTable, .resultsTable td, .resultsTable th {
    border-collapse: collapse;
    border: 1px solid #999;
    padding: 2px;
}

.resultsTable {
    width: 100%;

}

.summaryTable, .summaryTable td, .summaryTable th {
    border-collapse: collapse;
    border: 1px solid #999;
    padding: 3px;
}

.summaryTableR, .summaryTableR td, .summaryTableR th {
    border-collapse: collapse;
    border: 1px solid #999;
    text-align: right;
    padding: 3px;
}

.goodMsg{
    vertical-align: top;
    text-align: left;
    color: darkgreen;
    font-weight: bold;
    font-style: italic;
}

.badMsg {
    vertical-align: top;
    text-align: left;
    color: darkred;
    font-weight: bold;
    font-style: italic;
}

.resultsTable thead {
    background-color: #d2d2d2;
    border-bottom: 2px solid #999;
}

.summaryTable thead {
    background-color: #d2d2d2;
    border-bottom: 2px solid #999;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #333;
}

li {
    float: left;
}

li a {
    display: block;
    color: white;
    text-align: center;
    padding: 10px 12px;
    text-decoration: none;
}

/* Change the link color to #111 (black) on hover */
li a:hover {
    background-color: #111;
}

.tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black;
}

/* Tooltip text */
.tooltip .tooltiptext {
    visibility: hidden;
    width: 50px;
    background-color: mintcream;
    color: #0a0a0a;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;

    /* Position the tooltip text */
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: 0;

    /* Fade in tooltip */
    opacity: 0;
    transition: opacity 2s;
}

/* Tooltip arrow */
.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 100%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

.selectedRow {
    background-color: mediumorchid;
}

#zone-wrapper {
    position:relative;
}

#zonetable-scroll {
    height: 400px;
    overflow: auto;
    margin-top: 20px;
}
#zone-wrapper table {
    width: 100%;

}
#zonetable-wrapper table * {
    background: yellow;
    color: black;
}
#zonetable-wrapper table thead th .text {
    position: absolute;
    top: -20px;
    z-index: 2;
    height: 20px;
    width: 35%;
    border: 1px solid red;
}

#stock-wrapper {
    position:relative;
}
#stocktable-scroll {
    height: 500px;
    overflow: auto;
    margin-top: 20px;
}
#stock-wrapper table {
    width: 100%;

}
#stocktable-wrapper table * {
    background: yellow;
    color: black;
}
#stocktable-wrapper table thead th .text {
    position: absolute;
    top: -20px;
    z-index: 2;
    height: 20px;
    width: 35%;
    border: 1px solid red;
}