body {
    font-family: Arial, sans-serif;
    background: #f4f6f8;
}

.container {
    max-width: 420px;
    margin: 80px auto;
    background: #ffffff;
    padding: 24px;
    border-radius: 8px;
    text-align: center;
}

input {
    width: 100%;
    padding: 10px;
    margin-bottom: 4px;
}

button {
    margin-top: 12px;
    padding: 10px 20px;
    cursor: pointer;
}

#mainMessage {
    margin-top: 20px;
    font-size: 20px;
    font-weight: bold;
}

#details {
    margin-top: 10px;
    font-size: 14px;
    color: #555;
}

/* autocomplete */

#suggestions {
    border: 1px solid #ccc;
    border-top: none;
    max-height: 150px;
    overflow-y: auto;
    text-align: left;
}

.suggestion {
    padding: 8px;
    cursor: pointer;
    background: #fff;
}

.suggestion:hover {
    background: #eee;
}
