body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    display: flex;
    justify-content: center;
    padding-top: 50px;
}

.container {
    background-color: #fff;
    padding: 30px 40px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    width: 350px;
    text-align: center;
}

h1 {
    margin-bottom: 20px;
}

#searchInput {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    margin-bottom: 20px;
    font-size: 16px;
}

#itemList {
    list-style: none;
    padding: 0;
}

#itemList li {
    padding: 10px;
    border-bottom: 1px solid #eee;
    text-align: left;
    cursor: default;
}

#itemList li:hover {
    background-color: #f0f0f0;
}

#noResults {
    color: red;
    font-weight: bold;
}