.login {
    text-align: center;
}

div.scroll { 
    overflow-x: hidden; 
    overflow-y: auto; 
    margin:4px, 4px; 
    padding: 4px;
    height: 550px; 
} 

.add {
    text-align: left;
    padding-top: 20px;
    padding-bottom: 10px;
    padding-left: 20%;
    margin-left: 100px;
    margin-right: 100px;
    margin-bottom: 25px; 
    background-color: white;
    border: solid 2px lightgray;
}

.addLabel {
    padding-bottom: 1px;
}

.format {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 20px;
}

.formatText{
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 20px;
}

.cornerimg {
  width: 50%;
  height: 50%;
}

.column {
    float: left;
    width: 40%;
  }
  
/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
}

table {
    width:100%; 
    padding-left:20px;
    padding-right: 20px;
    padding-bottom:20px;
    margin-bottom: 50px; 
    background-color: white;
}

th {
    padding-left: 10px;
    padding-bottom: 10px;
}

td {
    padding-left: 10px;
    padding-bottom: 10px;
}

#map {
    height: 700px;  
    width: 100%;  /* The width is the width of the web page */
}

#footer {
    position: absolute;
    bottom: 0;
    background-color: white; 
    text-align:center; 
    padding: 50px;
    width: 100%;
}

.loader {
    position: absolute;
    left: 50%;
    top: 50%;
    border: 16px solid #f3f3f3; /* Light grey */
    border-top: 16px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
    padding: 25px;
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }