/* css/local.css */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(135deg, #f3ec78, #af4261);
}

.container {
    width: 80%;
    max-width: 1200px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

header {
    padding: 20px;
    background: #007bff;
    color: #fff;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

#map {
    width: 100%;
    height: 600px;
}
