.header {
    background-color: rgb(242, 242, 242);
    padding: 10px;
}

.footer {
    background-color: #333;
    color: white;
    padding: 10px;
    text-align: center;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
}

.menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.title {
    font-size: 36px;
    font-weight: bold;
    cursor: pointer;
}

.menu-buttons {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.menu-buttons a {
    color: #333;
    text-decoration: none;
    margin-left: 10px;
}

.menu-buttons a:hover {
    color: #000;
}

#div-table, #div-form {
    width: 50%;
}

#NoGPSData {
    display: flex;
    justify-content: center;
}
  
#NoGPSData img {
    max-width: 55%;
    height: auto;
}


.leaflet-container {
    height: 400px;
    width: 600px;
    max-width: 100%;
    max-height: 100%;
}
#map-layer {
    margin: 0 auto;
    text-align: center;
    width: 100%; /*1000px;*/
    height: 100%; /*800px;*/
}

@media screen and (max-width: 768px) {
    .menu-buttons {
        flex-direction: column;
        align-items: flex-end;
    }

    #div-table, #div-form {
        width: 100%;
    }

    #NoGPSData {
        display: flex;
        justify-content: center;
    }
    
    #NoGPSData img {
        max-width: 100%;
        height: auto;
    }

    .menu-buttons a {
        display: block;
        margin-bottom: 10px;
        margin-left: 0;
    }
}