.select-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.select-search {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.select-dropdown {
    position: absolute;
    width: 100%;
    background: white;
    border: 1px solid #ccc;
    border-top: none;
    max-height: 200px;
    overflow-y: auto;
    display: none;
    z-index: 1000;
}

.select-item {
    padding: 8px;
    cursor: pointer;
}

.select-item:hover {
    background-color: #f1f1f1;
}