/* Reset default padding and margin for the body and HTML elements */
body {
    padding: 0;
    margin: 0;
}
html, body {
    height: 100%;
    margin: 0;
}

/* Style for the map container */
#map {
    height: calc(100% - 40px); /* subtract the height of the header */
    width: 100%;
}

/* Styling for the header section */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 30px;
    padding: 10px;
    background-color: white;
}

.header h1 {
    font-size: 25px;
    margin: 0 auto; /* Center the h1 element horizontally */
}

.header a img {
    width: 30px;
    height: 30px;
}

/* Media Query for screens smaller than a tablet (width less than 768px) */
@media only screen and (max-width: 767px) {
    .header {
        display: none; /* Hide the header */
    }
    #map {
        height: 100%; /* Map takes up 100% height of the screen */
    }
}

/* Styling for the Leaflet map container */
.leaflet-container {
    background: rgba(0,0,0,.8) !important;
}

/* Styling for the coordinates control */
.leaflet-control-coordinates {
    background: white;
    border-radius: 4px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.65);
    cursor: pointer;
    padding: 2px 5px;
}

.leaflet-control-coordinates.hidden {
    display: none;
}

.leaflet-control-coordinates-lng {
    padding-left:
l 