body {
	
}

.column1 {
    width: 80px;
}

.column2 {
    width: 150px;
}

.column3 {
    width: 40px;
}

.column4 {
    width: 80px;
}

.column5 {
    width: 120px;
    color: blue;
}

.column6 {
    width: 80px;
}

.column7 {
    width: 130px;
    color: blue;
}

.headerText {
    color: blue;
    font-size: large;
}

.popup-overlay {
    /*Hides pop-up when there is no "active" class*/
    visibility: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 1000;
    /* Flexbox centering */
    display: flex;
    justify-content: center;
    align-items: center;
}
.popup-overlay.active {
    /*displays pop-up when "active" class is present*/
    visibility: visible;
    text-align: center;
}
.popup-content {
    /*Hides pop-up content when there is no "active" class */
    visibility: hidden;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    width: 90%;
    max-width: 400px;
    /* Inner centering and spacing */
    text-align: center;
    padding: 25px;
    /* Animation */
    animation: slideIn 0.3s ease;
}

.popup-content.active {
    /*Shows pop-up content when "active" class is present */
    visibility: visible;
}

.panel-overlay {
    visibility: visible;
    position: absolute;
    background: #ffffff;
    border: 3px solid #666666;
    left: 5px;
    top: 5px;
    padding: 10px;
    z-index: 9999;
}

#fixedheight {
    table-layout: fixed;
}
    #fixedheight td div {
        height: 30px;
        vertical-align: central;
        overflow: hidden;
    }

table {
    border-collapse: collapse;
}

table, th, td {
    border: 1px solid black;
    padding: 2px;
}
/* Move zoom controls to top-right (default) */
.ol-zoom {
    top: 20px !important;
    right: 20px !important;
    bottom: auto !important;
    left: auto !important;
}
#map {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

