#mapid {
    top: 60px;
    height:800px;
    
}
.info {
    padding: 6px 8px;
    font: 14px/16px Helvetica, sans-serif;
    background: white;
    background: rgba(255,255,255,0.8);
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
    border-radius: 5px;
}
.info h4 {
    margin: 0 0 5px;
    color: #777;
}
.schoolLink{
    transition: text-decoration .5s;
    cursor: pointer;
}

.schoolLink:hover{
    text-decoration: underline;
}
.header{
    display: grid; 
    grid-template-columns: 4fr 1fr; 
    padding: 15px;
    background-color: #a1d99b;
    font: 15px Arial, Helvetica, sans-serif;
    /* justify-content: flex-end; */
    border-radius: 5px;
    /* position: relative; */
    /* min-width:1000px; */
}
.links{
    display:grid;
    grid-template-columns: 1fr 1fr;
}
.headertext{
    transition: text-decoration .5s;
    transition: text-color .5s;
    cursor: pointer;
    color:white;
    /* margin-left: 5px; */
} 
.headertext:hover{
    text-decoration: underline;
    color: black;
}
.treeplenish{
    color:white;
} 
.scrollable{
    overflow-y: auto;
    max-height: 600px;
}
.scrollable::-webkit-scrollbar {
    -webkit-appearance: none;
}

.scrollable::-webkit-scrollbar:vertical {
    width: 11px;
}

.scrollable::-webkit-scrollbar:horizontal {
    height: 11px;
}

.scrollable::-webkit-scrollbar-thumb {
    border-radius: 8px;
    border: 2px solid white; /* should match background, can't be transparent */
    background-color: #016d30;
}

/* The popup background */
.modal {
    /* display: none;  */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 20em; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}
  
/* popup content */
.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 60%;
}

.modal-content p {
    font-size: 1.2em;
}

/* The Close Button */
.close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}