body { 
    margin: 0; 
    padding: 0; 
    font-size: 18px;
}

#map { 
    position: absolute;
    top: 10%;  /* Adjust top to account for header height */
    bottom: 12%; /* Adjust bottom to account for footer height */
    width: 100%;
}

.marker {
    display: block;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    padding: 0;
}


header {
    font-size: 2rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: white;
    color: #333;
    padding: 1.3%;
    text-align: center;
    z-index: 1000;
}

h2 {
    font-size: 1.5rem;
    margin-top: .5%;
}

h3 {
    font-size: 1.17rem;

}

h4{
    font-size: 1em;
}

footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: white;
    color: #4d4a4a;
    padding: 0.5%;
    text-align: center;
    z-index: 1000;
    font-size: 0.9rem;
}

#info-box {
    position: absolute;
    top: 13%;
    left: 1120px;
    width: 375px;
    padding: 1%;
    background: white;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    display: none;
    max-height: 475px;
    overflow-y: auto; 
}


#info-box img {
    width: 100%;
    border-radius: 8px;
}   

.hidden {
    display: none;
}
