body {
    font-family: Arial, sans-serif;
    margin: 2em auto;
    max-width: 600px;
    line-height: 1.6;
    color: #333;
}

.logo

{
width: 80%;
}

h1 {
    color: #007BFF;
}

form {
    margin-bottom: 1em;
    position: relative;
}

input, button {
    padding: 0.5em;
    margin: 0.5em 0;
}

button {
    background-color: #007BFF;
    color: white;
    border: none;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}

#suggestions {
    position: absolute;
    background: #fff;
    border: 1px solid #ccc;
    max-height: 150px;
    overflow-y: auto;
    width: 100%;
    z-index: 10;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.suggestion {
    padding: 10px;
    cursor: pointer;
}

.suggestion:hover {
    background-color: #f0f0f0;
}
