/* style.css */
body {
    font-family: Arial, sans-serif;
    background-color: #f0f2f5;
    color: #333;
    margin: 0;
    padding: 0;
}
.center-content {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}
.auth-container, .dashboard-container {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    width: 350px;
    text-align: center;
}
input, select, button {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 4px;
    border: 1px solid #ccc;
    box-sizing: border-box;
}
button {
    background-color: #ffcc00; 
    color: #333;
    font-weight: bold;
    cursor: pointer;
    border: none;
}
button:hover { background-color: #e6b800; }
.message-area {
    margin-top: 15px;
    padding: 10px;
    border-radius: 4px;
    font-weight: bold;
}
#mapid { height: 400px; margin-top: 15px; }
