body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

.container {
    background: white;
    width: 80%;
    max-width: 500px;
    margin: 50px auto;
    padding: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

h1, h2 {
    color: #333;
}

form {
    margin-top: 20px;
}

button.btn {
    background: #28a745;
    color: white;
    padding: 10px 20px;
    border: none;
    margin: 10px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    transition: background 0.3s ease;
}

button.btn:hover {
    background: #218838;
}

.map-container {
    width: 100%;
    height: 400px;
    margin-top: 20px;
    border-radius: 10px;
    overflow: hidden;
}

a.logout {
    display: inline-block;
    margin-top: 20px;
    color: red;
    font-weight: bold;
    text-decoration: none;
}

a.logout:hover {
    text-decoration: underline;
}

p.error {
    color: red;
    font-weight: bold;
}

p.success {
    color: green;
    font-weight: bold;
}
