﻿/*Copyright © 2023–2024 CoreMobile, Inc. PROPRIETARY AND CONFIDENTIAL. TRADE SECRET MATERIAL.*/


.autocomplete-wrapper {
    position: relative;
    margin: auto;
}

.autocomplete-list {
    position: absolute;
    /* top: 49px; */
    left: 0;
    right: 0;
    /* width: 284px; */
    margin: auto;
    background: white;
    z-index: 1000;
}

    .autocomplete-list > div {
        border: 1px solid #ccc;
        padding: 10px 5px;
        cursor: pointer;
    }

        .autocomplete-list > div:hover {
            background: #e9e9e9;
        }

        .autocomplete-list > div.active {
            background-color: DodgerBlue !important;
            color: #ffffff;
        }

.matching-word {
    font-weight: bold;
}
.goto-options {
    padding-left:1em;
    cursor:pointer;
}
.hovered:hover {
    background: #e9e9e9;
}
/* Parent item */
.goto-options.parent {
    cursor: pointer;
    padding-left: 20px; /* Adjust indentation */
}

/* Child item */
.goto-options.child {
    cursor: pointer;
    padding-left: 40px; /* Double the indentation of parent */
}

/* Expand icon */
.goto-options.parent .fa-plus {
    margin-right: 5px;
}

/* Collapse icon */


.goto-options.parent .fa-minus {
    margin-right: 5px;
}

.childresults {
    padding-left: 2em;
}

