body {
    font-family: Arial, sans-serif;
    color: #333;
    background-color: #f9f9f9;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    padding: 20px;
    font-size: 1rem;
}
.container {
    text-align: center;
    background: rgba(255, 255, 255, 0.8);
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    max-width: 400px;
    width: 100%;
}
.banner {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 10px auto; /* Adjusted margin to remove excess space */
}
h2 {
    font-size: 2.5rem;
    color: #007BFF;
    margin-bottom: 10px; /* Adjusted margin to remove excess space */
}
h1 {
    margin: 15px 0;
}
input {
    padding: 10px;
    font-size: 1rem;
    width: 80px;
    margin-top: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    text-align: center;
    margin-right: 10px;
}
button {
    padding: 10px 20px;
    font-size: 1rem;
    margin-top: 10px;
    cursor: pointer;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s, box-shadow 0.3s;
}
button:hover {
    background-color: #0056b3;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.result, .info-text {
    margin-top: 20px;
    font-size: 1.125rem;
}
.result {
    font-weight: bold;
}
.error {
    color: red;
}
.map {
    max-width: 100%;
    height: auto;
    margin-top: 20px;
}
.site-footer {
  width: 100%;
  background-color: #f1f1f1;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  color: #555;
  margin-top: 2rem;
  border-top: 1px solid #ddd;
}

.site-footer a {
  color: #007BFF;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

