.tsb-searchbar-wrap{
    width:100%;
    position:relative;
}

.tsb-searchbar-inner{
    position:relative;
    width:100%;
}

.tsb-search-input{
    width:100%;
    min-height:44px;
    padding:10px 14px;
    box-sizing:border-box;
}

.tsb-live-results{
    position:absolute;
    top:100%;
    left:0;
    width:max-content;
    min-width:100%;
    max-width:min(700px, 95vw);
    background:#fff;
    border:1px solid #ddd;
    margin-top:2px;
    z-index:9999;
    display:none;
    max-height:360px;
    overflow:auto;
    box-shadow:0 6px 18px rgba(0,0,0,0.08);
}
.tsb-live-result-item{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:12px;
    padding:10px 12px;
    text-decoration:none;
    border-bottom:1px solid #eee;
    white-space:nowrap;
}
.tsb-searchbar-wrap,
.tsb-searchbar-inner{
    overflow:visible;
}

.tsb-live-results.is-visible{
    display:block;
}

.tsb-live-results-inner{
    display:block;
}

.tsb-live-result-item{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:12px;
    padding:10px 12px;
    text-decoration:none;
    border-bottom:1px solid #eee;
}

.tsb-live-result-item:last-child{
    border-bottom:none;
}

.tsb-live-result-item:hover{
    background:#f7f7f7;
}

.tsb-live-result-title{
    font-weight:600;
    line-height:1.3;
}

.tsb-live-result-type{
    font-size:12px;
    opacity:0.7;
    white-space:nowrap;
}

.tsb-live-result-empty{
    padding:10px 12px;
    opacity:0.7;
}