.search-box {
    width: 100%;
    position: relative;
    display: inline-block;
}
.search-box input {
    display: block;
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 3px 10px !important;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #000;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ddd;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.dropdown-search:focus-visible{
    outline: none;
    border: 1px solid #fff;
}

.dropdown-search:focus-visible{
    outline: none;
    background: #fff !important;
    border: 1px solid #000;
}
.search-box ul {
    display: none;
    position: absolute;
    background: #ffffff;
    list-style: none;
    padding: 0px;
    margin: 0;
    max-height: 150px;
    overflow-y: auto;
    width: 100%;
    z-index: 999;
    scrollbar-width: none !important;
    border: 1px solid #000;
    border-top: none;
}
.search-box ul li {
    padding: 8px;
    cursor: pointer;
}
.search-box ul li:hover {
    background-color: #1b6ef3;
    color: #fff;
}
.search-box ul .no-items {
    color: #999;
    font-style: italic;
    cursor: default;
}