.tree-wrapper {
    position: relative;
    width: 100%;
    max-width: 300px;
}

.imei-input {
    width: 100%;
    box-sizing: border-box;
    cursor: pointer;
    background-color: #fff;
}

.tree-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #ccc;
    max-height: 200px;
    overflow-y: auto;
    padding: 10px;
    box-sizing: border-box;
    z-index: 10000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.tree-dropdown .search-box {
    width: 100%;
    padding: 6px;
    margin-bottom: 10px;
    font-size: 13px;
    box-sizing: border-box;
}

.tree-dropdown ul.tree-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.tree-dropdown ul.tree-list li {
    margin: 5px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tree-dropdown label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: normal;
    cursor: pointer;
}
.admin__table-wrapper{
    overflow: unset
}