body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    justify-content: center;
}

#searchBox {
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    width: 300px;
    outline: none;
    margin-bottom: 20px;
}

#resultsList {
    list-style-type: none;
    padding: 0;
    width: 320px;
}

#resultsList li {
    padding: 10px 15px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#resultsList li:hover {
    background-color: #e9e9e9;
}
