/* Invalid Page */
#invalidPage {
    font-family: Arial, sans-serif;
    text-align: center;
    padding-top: 50px;
    background: rgb(233, 233, 233);
}
#invalidPage .message-box {
    border: 1px solid #ddd;
    padding: 20px;
    margin: 0 auto;
    width: 80%;
    max-width: 500px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    background-color: white;
}

/* Location Page */
html {
    height: 100%;
    margin: 0;
    padding: 0;
}
#locationPage {
    height: 100%;
    margin: 0;
    padding: 0;
}
#locationPage #map { 
    height: 100%;
}
#locationPage #status {
    background: rgba(0, 0, 0, 0.794);
    color: white;
    padding: 10px;
    border-radius: 5px;
    font-size: 1.2em;
    font-family: sans-serif;
}
#locationPage #center-button {
    margin-bottom: 10px;
    background-color: #ffdb5b;
    color: black;
    font-weight: bold;
    border: 2px solid black;
    padding: 8px 12px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    border-radius: 4px;
}
#locationPage #refresh-button {
    margin-left: 5px;
    margin-bottom: 10px;
    background-color: #ffdb5b;
    color: black;
    font-weight: bold;
    border: 2px solid black;
    padding: 8px 12px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    border-radius: 4px;
}
#locationPage #refresh-button:hover, #locationPage #center-button:hover {
    background-color: #ffc405;
}
#locationPage #updateContainer{
    text-align: right;
    display: inline-block;
    position: absolute;
    padding: 10px;
    bottom: 0px;
    right: 0px;
}