.popup-search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 88%);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

.popup-search-box {
    width: 100%;
    max-width: 800px;
}

.popup-search-box input.search-field {
    width: 100%;
    padding: 6px 15px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-right: 10px;
}

.popup-search-box button {
    padding: 10px 60px;
    background: #F2CD02;
    color: #000;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 700;
}

.popup-search-box button:hover {
    background: #fff;
    color: #000 !important;
}

.popup-search-box .close-search {
    position: absolute;
    top: 24px;
    right: 40px;
    font-size: 30px;
    cursor: pointer;
    line-height: 33px;
    background-color: #fff;
    width: 37px;
    height: 36px;
    border-radius: 50px;
    font-weight: 700;
    text-align: center;
}

#liveSearchResults {
    list-style: none;
    margin: 10px 0 0;
    padding: 0;
    max-height: 250px;
    overflow-y: auto;
    text-align: left;
}

#liveSearchResults li {
    padding: 8px 10px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
}

#liveSearchResults li:hover {
    background: #f3f3f3;
}

#liveSearchResults a {
    text-decoration: none;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

#liveSearchResults img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 5px;
}

