body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

#map {
    position: relative;
    width: 100%;
    height: 80vh;
    /* Make the map take up most of the screen */
    margin-top: 20px;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    padding-top: 60px;
}

.modal-content {
    background-color: var(--background-color);
    margin: 5% auto;
    padding: 20px;
    border: 1px solid var(--contrast-color);
    width: 80%;
    max-height: 80vh;
    overflow-y: auto;
    border-radius: 8px;
}

.close {
    color: var(--contrast-color);
    float: right;
    font-size: 28px;
    font-weight: bold;
}

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

/* Footer Styles */
footer .close-button {
    background-color: var(--border-color);
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

footer .close-button:hover {
    background-color: var(--contrast-color);
}

footer .close-button:focus {
    outline: none;
}