html{
    position:relative; 
    min-height: 100%;
    margin:0;
    padding:0;
}

body {
    font-family: Poppins,sans-serif;
    margin:0;
    padding:0;
}

header {
    background-color: #353535;
    text-align:left;
    color: white;
    padding:10px;
}

.navbar {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #595959;
    position: sticky;
    top: 0;
}
  
.navbar_page {
    float: left;
}
  
.navbar_page a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}
  
.navbar_page a:hover {
    background-color: #333;
}

footer {
    background-color: #353535;
    text-align:left;
    color: white;
    padding:10px;
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 150px;
    display: flex;
}

footer>div {
    flex: 1;
}

footer>div * {
    color:white;
}

fieldset {
   min-width: 300px;
   max-width: 500px;
}

.pageContentWrapper{
    margin-bottom:190px;    /* Height of footer*/
    width: 100%;
}

.content {
    margin:10px;
}

.license {
    margin-right: 25px;
}

.hide {
    display:none;
}

.error {
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background-color: pink;
    color: red;
}

.warning {
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background-color: yellow;
    color: orange;
}

.success {
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background-color: lightgreen;
    color: green;
}

#logo {
    float:right;
}

.hidden {
    color:red;
    /*nothing here*/
}

table, td, th {
    padding: 5px;
    border: 2px solid black;
    border-collapse: collapse;
}

td {
    border: 1px solid black;
}

.return-table {
    width: 100%;
    padding: 0px;
    margin: 0px;
    border-collapse: separate;
    border-spacing: 0 5px;
    border: 0px solid black;
}

.return-table th {
    background-color:lightgreen;
    width:15%;
}

.return-table td {
    width:35%;
}

#table-scroll {
    max-height:550px;
    overflow:auto;
    margin-top:20px;
}

#table-scroll td {
    text-align: center;
}

.coordinates {
    position:sticky;
    top:-5px;
    background-color: lightgray;
    text-align: center;
    min-width: 150px;
    z-index: 10;
}

.colTitles {
    position:sticky;
    top:23px;
    background-color: lightgray;
    text-align: center;
    z-index: 10;
}

.coordinates-number {
    position:sticky;
    left:-5px;
    background-color: lightgray;
    text-align: center;
    min-width:40px;
}