
.search-item{
    display:flex;
    gap:10px;
    align-items:center;
    padding:10px;
    text-decoration:none;
    color:#000;
}

.search-item:hover{
    background:#f8f8f8;
}


.book-search-wrapper{
    position:relative;
    width:100%;
    max-width:700px;
}

#book-live-search{
    width:100%;
    height:58px;
    border:none;
    outline:none;
    border-radius:50px;
    background:#f3f3f3;
    font-size:15px;
    padding:0 55px 0 20px;
    box-sizing:border-box;
}

.search-icon{
    position:absolute;
    right:20px;
    top:29px; /* half of input height */
    transform:translateY(-50%);
    font-size:18px;
    color:#666;
    line-height:1;
    pointer-events:none;
    z-index:10;
}

#book-search-results{
    position:absolute;
    top:65px;
    left:0;
    width:100%;
    background:#fff;
    border-radius:12px;
    box-shadow:0 5px 20px rgba(0,0,0,0.15);
    display:none;
    z-index:9999;
}