.hpls-wrapper{

    width:100%;
    max-width:900px;
    margin:auto;
    position:relative;

}

.hpls-search-box{

    display:flex;
    gap:10px;

}

#hpls-search{

    flex:1;
    padding:16px;
    font-size:18px;
    border:2px solid #ddd;
    border-radius:8px;

}

#hpls-button{

    background:#0c5a73;
    color:#fff;
    border:none;
    padding:0 30px;
    border-radius:8px;
    cursor:pointer;
}

#hpls-results{

    display:none;
    position:absolute;
    width:100%;
    background:#fff;
    border-radius:14px;
    overflow:hidden;
    box-shadow:0 20px 40px rgba(0,0,0,.12);
    border:1px solid #ececec;
    margin-top:8px;
    z-index:9999;

}

.hpls-item{

    display:flex;
    align-items:flex-start;
    gap:15px;
    padding:16px 20px;
    text-decoration:none;
    color:#222;
    border-bottom:1px solid #f1f1f1;
    transition:.2s;

}

.hpls-item:last-child{

    border-bottom:none;

}

.hpls-item:hover{

    background:#f8fbff;

}

.hpls-item:focus{

    background:#eef6ff;
    outline:none;

}

.hpls-item-icon{

    flex-shrink:0;
    margin-top:2px;

}

.hpls-item-content{

    flex:1;

}

.hpls-title{

    font-size:16px;
    font-weight:600;
    color:#222;

}

.hpls-path{

    margin-top:4px;
    color:#888;
    font-size:13px;
    line-height:1.4;

}

.hpls-empty{

    padding:22px;
    text-align:center;
    color:#777;

}

.hpls-search-box{

    position:relative;

    display:flex;

    align-items:center;

}

.hpls-icon{

    position:absolute;

    left:18px;

    font-size:20px;

    z-index:5;

}

#hpls-search{

    padding-left:55px;

    padding-right:45px;

}

#hpls-clear{

    position:absolute;

    right:150px;

    cursor:pointer;

    font-size:28px;

    color:#999;

    display:none;

}

#hpls-clear:hover{

    color:#111;

}