 /* Always set the map height explicitly to define the size of the div
       * element that contains the map. */
 #map {
     height: 70%;
     width: 90%;
     margin: 25px;
 }

 html,
 body {
     height: 100%;
     margin: 0;
     padding: 0;
     /*font-family: "Arial Black", Gadget, sans-serif;*/
 }

 div.comp h2 {
     font-size: 3vw;
 }

 .searchButton {
     background-color: cornflowerblue;
     padding: 5px;
     font-family: "Arial Black", Gadget, sans-serif;
     font-size: 1.2em;
     border-radius: 10px;
 }

 .resetButton {
     background-color: lightgray;
     padding: 5px;
     font-family: "Arial Black", Gadget, sans-serif;
     font-size: 1em;
     border-radius: 10px;
 }

 div.logo {
     height: 100px;
     width: 300px;
     background-image: url('strongpeoplejustinwhite.jpg');
     background-size: 300px 100px;
     background-repeat: no-repeat;
     margin: 0px;
 }

 hr.separator {
     margin: 0px;
 }

 div.controls {
     margin-left: 25px;
     margin-bottom: 15px;
 }

 #errorMessage {
     color: darkgrey;
     margin-left: 25px;
 }

 #pac-input {
     width: 100%;
     padding: 12px;
     border: 1px solid #ccc;
     border-radius: 4px;
     resize: vertical;
 }

 div.buttons {}

 div.end {
     width: 100%;
     clear: both;
 }

 a.linkButton {
     background-color: forestgreen;
     padding: 8px;
     text-decoration: none;
     color: white;
     border-radius: 10px;
     opacity: 0.6;
 }

 a.linkButton:hover {
     opacity: 1.0;
     box-shadow: 5px 5px grey;
 }

 div.left {
     float: left;
     width: 50%;
 }

 div.right {
     float: right;
     /*width: 225px;*/
     height: 50px;
     margin-right: 25px;
     margin-top: 25px;
 }

 /* The navigation bar */
 .navbar {
     overflow: hidden;
     background-color: forestgreen;
     /*position: fixed; /* Set the navbar to fixed position */
     top: 0;
     /* Position the navbar at the top of the page */
     width: 100%;
     justify-content: left;
     display: block;
     /* Full width */
     padding: 0px;
 }

 /* Links inside the navbar */
 .navbar a {
     float: left;
     display: block;
     color: #f2f2f2;
     text-align: center;
     padding: 14px 16px;
     text-decoration: none;
 }

 /* Change background on mouse-over */
 .navbar a:hover {
     background: #ddd;
     color: black;
 }

 /* Hide the link that should open and close the topnav on small screens */
 .navbar .icon {
     display: none;
 }

 /* When the screen is less than 600 pixels wide, hide all links, except for the first one ("Home"). Show the link that contains should open and close the topnav (.icon) */
 @media screen and (max-width: 600px) {
     .navbar a:not(:first-child) {
         display: none;
     }

     .navbar a.icon {
         float: right;
         display: block;
     }
 }

 /* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */
 @media screen and (max-width: 600px) {
     .navbar.responsive {
         position: relative;
     }

     .navbar.responsive a.icon {
         position: absolute;
         right: 0;
         top: 0;
     }

     .navbar.responsive a {
         float: none;
         display: block;
         text-align: left;
     }
 }

 div.formdata {
     margin: 5px;
 }

 form {
     height: 100%;
     margin: 10px;
 }

 div.spacer {
     height: 50px;
 }

 div.maincontent {
     padding: 10px;
     font-size: 0.9em;
 }

 div.compApprovalList {
     border: 1px black ridge;
     padding: 10px;
     margin: 10px;
 }

 @media only screen and (max-width: 768px) {}

 #compslist {
     margin: 20px;
     overflow: hidden;
 }

 #compslist > div {
     border: 2px forestgreen ridge;
     padding: 10px;
     margin: 10px;
     border-radius: 20px;
 }

 .complistentry {
     padding: 5pm;
     font-family: Arial;
     overflow: wrap;
 }

 span.listkey {
     font-weight: bold;
 }

 .compnamelist {
     font-size: 1.5em;
     font-weight: bold;
 }

 .compcategorieslist li {
     display: inline;
     padding: 5px;
 }

 .hidden {
     display: none;
 }

 #page-container {
     position: relative;
     min-height: 100vh;
 }

 #content-wrap {
     padding-bottom: 400px;
     /* Footer height */
 }


 #footer {
     position: relative;
     bottom: 0;
     width: 100%;
     height: 150px;
     /* Footer height */
 }

 .image-attribution {
     font-size: 0.5em;
     padding: 5px;
 }

 div.legend {
     border: 1px ridge #ccc;
     display: inline-block;
     padding: 10px;
     margin: 25px;
 }

 input.newCompFormInput {
     width: 40vw;
 }

 #newCompForm * {
     box-sizing: border-box;
 }

 #newCompForm input[type=text] {
     width: 100%;
     padding: 12px;
     border: 1px solid #ccc;
     border-radius: 4px;
     resize: vertical;
 }

 #newCompForm textarea {
     width: 100%;
     height: 25vw;
     padding: 12px;
     border: 1px solid #ccc;
     border-radius: 4px;
     resize: vertical;
 }

 #newCompForm label {
     padding: 12px 12px 12px 0;
     display: inline-block;
 }

 #newCompForm input[type=submit] {
     background-color: #4CAF50;
     color: white;
     padding: 12px 20px;
     border: none;
     border-radius: 4px;
     cursor: pointer;
 }

 #newCompForm input[type=submit]:hover {
     background-color: #45a049;
 }

 div.newCompFormContainer {
     border-radius: 5px;
     background-color: #E7F3E7;
     padding: 20px;
     max-width: 800px;
 }

 .newCompFormLabels {
     float: left;
     width: 30%;
     margin-top: 6px;
 }

 .newCompFormFields {
     float: left;
     width: 70%;
     margin-top: 6px;
 }

 /* Clear floats after the columns */
 .newCompFormRow:after {
     content: "";
     display: table;
     clear: both;
 }

 .newCompFormRow {
     padding: 5px;
 }

 /* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
 @media screen and (max-width: 600px) {

     .newCompFormLabels,
     .newCompFormFields,
     #newCompForm input[type=submit] {
         width: 100%;
         margin-top: 0;
     }
 }

 #toggleFilters {
     margin-left: 25px;
     margin-top: 25px;
     margin-bottom: 25px;
     padding: 0px;
 }

.filters-container {
    display: grid;
    grid-template-columns: auto auto;
    justify-content: start;
    padding: 20px;
}

.filter-item {
    text-align: left;
    padding-right: 20px;
}