.map {
    width: 1200px; /* 1875px */
    height: 750px;
    border: 1px solid #000000;
}

body {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 10pt;
}

.window {
    position: absolute;
    left: 250px;
    top: 250px;
    background-color: white;
    border: #000000 solid 1px;
    padding: 0px;
    border-radius: 10px;
    visibility: hidden;
}

.windowHeader {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    padding: 5px;
    cursor: move;
    background-color: #7e7e7e;
    color: #FFFFFF;
    height: 16px;
}

.windowHeader > * {
    float: left;
}

.windowClose {
    float: right;
    cursor: default;
    height: 16px;
    width: 16px;
    background-color: #EC6B5E;
    /* border-radius: 16px; */
    border: solid 1px rgba(0,0,0,0.5);
    text-align: center;
    z-index: 9999;
}

.windowBody {
    padding: 10px;
}


.windowBody > * {
    margin: 5px;
    float: left; 
    clear: both; 
}

.windowBody button {
    float: left; 
    clear: both; 
}

#selectUnits {
    left: 300px;
    top: 200px;
    width: 150px;
}

#selectUnitTypeSkip {
    float: right;
    clear: none;
}

#selectUnitsDone {
    margin-bottom: 15px;
}

/* Activity Phase Panel Styling */

#acivityPhasePanel {
    display: inline-flex;
    border: #000000 1px solid;
    border-radius: 5px;
    margin-top: 5px;
    clear: both;
    background: #f5f5f5;
}

#acivityPhasePanel div {
    text-align: center;
    padding: 0px;
    margin: 2px;
}

#acivityPhasePanel div.heading1 {
    font-weight: bold;
    width: 80px;
    display: flex;  
    justify-content: center;
    align-items: center;
    color:#535353;
}

#acivityPhasePanel div.heading2 {
    font-weight: bold;
    display: flex;
    justify-content: right;
}

#acivityPhasePanel div .phaseDone {
    background: #a0a0a0;
    border-radius: 5px;
    padding-left: 3px;
    padding-right: 3px;
}

#acivityPhasePanel div .phaseCurrent {
    background: #00FF00;
    border-radius: 5px;
    padding-left: 3px;
    padding-right: 3px;
}

#acivityPhasePanel div .phaseInvalid {
    background: #000000;
    border-radius: 5px;
    padding-left: 3px;
    padding-right: 3px;
}



