body {
    font-family: Arial, sans-serif;
}

.search-container {
    width: 80vw;
    margin: auto;
    padding-top: 20px;
}

#dataList {
    list-style: none;
    padding: 0;
    margin-top: 10px;
    border: 1px solid #ccc;
    max-height: 80%;
    overflow-y: auto;
}

#dataList li {
    padding: 8px;
    border-bottom: 1px solid #ccc;
    cursor: pointer;
}

#dataList li:last-child {
    border-bottom: none;
}

#dataList li:hover {
    background-color: #f0f0f0;
}