.custom-search-dialog {
    display: none;
    /* hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    z-index: 1050;
}

ul li a.searchicon:hover {
    color: white !important;
}
ul li > a > i.searchicon:hover {
    color: white !important;
}
.searchicon {
    font-size: 14px !important;
}

.close-btn {
    position: relative;
    border: none;
    float: right;
    background-color: transparent;
    font-size: 24px;
    text-align: right;
    margin-bottom: 5px;
    color: black;
    right: 0;
    cursor: pointer;
}



.custom-search-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 20px;
    border-radius: 8px;
    width: 500px;
    max-width: 90%;
    z-index: 1050;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.suggestions-list {
    list-style: none;
    margin: 10px 0 0 0;
    padding: 0;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fff;
    max-height: 300px;
    overflow-y: auto;
    display: none;
    text-align: left;
}

.suggestions-list li {
    padding: 8px 12px;
    cursor: pointer;
}

.suggestions-list li:hover {
    background: #f0f0f0;
}
.search-icon {
    display: block !important;
}
@media (max-width: 767px) {
    .search-icon {
        display: none !important;
    }

    dl,
ul,
ol {
    list-style-position: outside;
    padding-left: 10px;
}
}

.site-header {
    width: 100% !important; 
}



.jmetrends-search-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border-radius: 50px;
    border: 1px solid #ddd;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 6px 15px;
    transition: all 0.2s ease-in-out;
}

.jmetrends-search-bar:hover {
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.jmetrends-search-bar input {
    border: none;
    outline: none;
    flex: 1;
    font-size: 16px;
    padding: 10px;
    background: transparent;
}

.jmetrends-search-bar button {
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 18px;
    color: #4285f4; /* jmetrends blue */
    padding: 0 10px;
    transition: transform 0.2s;
}

.jmetrends-search-bar button:hover {
    transform: scale(1.1);
}
