body {
    text-align: center;
    font-family: Arial, sans-serif;
    padding: 20px;
    background-color: #f0f8ff;
}

h1 {
    color: #0066cc;
}

.container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.left, .right {
    width: 48%;
}

input.place {
    padding: 5px;
    margin: 5px 0;
    width: 80%;
}

button {
    padding: 10px 20px;
    background-color: #0066cc;
    color: white;
    border: none;
    cursor: pointer;
    margin: 5px;
}

button:hover {
    background-color: #003d99;
}

#result {
    margin-top: 20px;
}

#message {
    font-size: 18px;
    color: #0066cc;
}

a {
    display: block;
    margin-top: 10px;
    color: #0066cc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.suggestions {
    position: absolute;
    background: white;
    border: 1px solid #ccc;
    width: 200px;
    max-height: 150px;
    overflow-y: auto;
    display: none;
}

.suggestion-item {
    padding: 5px;
    cursor: pointer;
}

.suggestion-item:hover {
    background-color: #f0f0f0;
}