

html, body  {
    height: 100%;
    margin: 0;
    padding: 0;
}


div.header {

    font-size: 2em;
    font-weight: bold;
    margin-left: 1em;
    margin-right: 0;

    left:0; right:0;
    height: 50px;
}


li.commandHeader {
    color: #000;
    display: block;
    font-weight: bold;
    padding: 4px 0 4px 2px;
}



div.popup {
    position: fixed;
    border: 2px solid #000;
    border-radius: 5px;
    left: 5%;
    top: 10%;
    background: #CCC;
    /*transform: translate(-50%, -50%);*/
    /*visibility: hidden;*/
}

div.popupText {
    padding: 5px;
}

div.popupHeader {
    background: #FFF;
}

td.radioTableGroupHeader {
    border-bottom:1pt solid black;
    height: 10px;
}

table.popupRadioGroup {
    border: 1px solid black;
    height:100%;
    padding: 0px 5px
}


.alertArea {
/*    position: absolute;
    left:20px; top:75px; right:0; bottom:0;*/
}

.commandResponseArea {
    position: absolute;
    left:200px; top:50px; right:0; bottom:0;
}

.commandSpinner {
	display: inline-block;
    border: 4px solid #f1f1f1; /* Light grey */
    border-top: 4px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 15px;

    /*float: right;*/
    height: 15px;
    animation: loadingSpin 1.5s linear infinite;
}

.progressBarArea {
    width: 100%;
    background-color: gray;
    border-radius: 25px;
}

.progressBar {
    width: 0%;
    height: 20px;
    background-color: green;
    border-radius: 25px;
}


@keyframes loadingSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
