/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #4c69a5, #3b5998);
    color: #333;
    text-align: center;
    padding: 20px;
    margin: 0;
}

h2 {
    color: #fff;
    font-size: 2.5em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Form Styles */
input[type="text"], select {
    width: 280px;
    padding: 10px;
    margin: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

button {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    margin: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    transition: background 0.3s;
    box-shadow: 0 4px 8px rgba(0, 123, 255, 0.2);
}

button:hover {
    background-color: #0056b3;
}

/* Output Box */
#output {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    display: inline-block;
    padding: 20px;
    margin-top: 20px;
    width: 80%;
    max-width: 500px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: left;
    color: #333;
}

/* Map Styles */
iframe {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin-top: 20px;
    width: 100%;
    max-width: 800px;
    height: 400px;
}
