
.custom-dropdown-xyz {
    /*  position: relative;
            display: inline-block; */
    /*   font-family: Tahoma, "Segoe UI", sans-serif; */
    /*     width: 220px; */
}

    .custom-dropdown-xyz input {
        width: 100%;
        box-sizing: border-box;
        padding: 8px 10px;
        /* border: 1px solid #ccc; */
        border-radius: 6px;
        outline: none;
    }

    .custom-dropdown-xyz .list {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        max-height: 160px;
        overflow-y: auto;
        background: #fff;
        border: 1px solid #ccc;
        border-top: none;
        border-radius: 0 0 6px 6px;
        display: none;
        z-index: 9999;
    }

        .custom-dropdown-xyz .list div {
            padding: 8px 10px;
            cursor: pointer;
        }

            .custom-dropdown-xyz .list div:hover {
                background: #f0f0f0;
            }
