.box-search-result {
    z-index: 1000;
    position: absolute;
    background-color: white;
    width: 92%;
    box-shadow: 1px 1px 5px #888888;
    overflow-y: auto;
    height: 100px;
}

.search-result {
    list-style-type: none;
    margin: 0;
    padding: 0;
    border: solid 1px #e6e6e6;
    cursor: pointer;
}

.search-result-item {
    padding-left: 20px;
}

.search-result-item:hover {
    background-color: #1e90ff;
    color: white;
}