#searchResponsive{
    display: none;
    padding-top: 5px;
    padding-bottom: 5px;
}
.searchHeader{
    grid-column: 2;
    grid-row: 1;
    padding-top: 35px;
    position: relative;
    z-index: 9999;
}
#ResponsiveBar{
    display: none;
}
.rowSearch {
    display: flex;
    height: 20px;
    padding: 20px 10px;
    background-color: white;
    border: 1px solid gray;
    border-radius: 15px;
    align-items: center;

    position: relative;
    z-index: 100;
    box-shadow: inset -1px 2px 4px 2px rgba(0, 0, 0, 0.1);


    /* display: flex;
    align-items: center;
    background-color: #f9f9f9;
    border: 1px solid #ccc;
    border-radius: 30px;
    padding: 10px 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease-in-out; */
}

.rowSearch:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}


.highlight {
    background-color: #f0f0f0;
    cursor: pointer;
    font-weight: bold;
    text-decoration: underline;
    transform: scale(1.001);
    transition: background 0.1s ease-out, transform 0.1s ease-out;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    color: black;
}


#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
    display: none;
}

#overlay.active {
    display: block;
}


.clearBtn:hover {
    transform: scale(1.1);
    cursor: pointer;
}


.searchHeader input, #ResponsiveBar input{
    margin-top: 0px;
    margin-left: 0px;
    width: 50px;
    height: 20px;
    font-size: 20px;
    padding: 20px 10px;
    flex: 1;
    border-radius: 30px;
    background: transparent;
    border: none;
    outline: 0;
    font-family: Helvetica Neue,Helvetica,Arial,sans-serif;

    /* flex: 1;
    height: 40px;
    padding: 0 15px;
    border: none;
    border-radius: 20px;
    font-size: 16px;
    background-color: transparent;
    outline: none;
    transition: background-color 0.3s ease-in-out; */
}

.searchHeader input::placeholder,
#ResponsiveBar input::placeholder {
    color: #888;
    font-size: 14px;
}

.searchHeader input:focus,
#ResponsiveBar input:focus {
    background-color: #fff;
}





#inputBox {
    font-size: 16px !important;    
    color:#595959;
}

::placeholder{
    color: #555;
    font-size: 15px;
}

header button{
    margin-left: 0px;
    border: none;
    background: transparent;
    cursor: pointer;

    /* display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #cf1715;
    border: none;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out; */
}

header button:hover {
    transform: scale(1.02);
}





.not-found-image {
    text-align: center;
    width: 80%; 
    height: auto; 
    overflow: hidden;
  }

/*result box*/
.resultBox {
    position: relative;
    z-index: 100;
    background: white;
    margin-top: 5px;
    max-height: 200px;
    overflow-y: auto;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}




.resultBox, .resultBox1{
    background-color: white;
    width: 100%;
    position: absolute;
    z-index: 2000;
    color: #555;
    box-shadow:  0 4px 8px 0 rgba(0, 0, 0, 0.2);

    margin-top: 5px;
    max-height: 300px;
    overflow-y: scroll;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 15px;
}

.resultBox ul, .resultBox1 ul{
   padding: 1px 10px;
   
}

.resultBox ul li, .resultBox1 ul li {
    list-style: none;
    border-radius: 3px;
    padding: 15px 10px;
    cursor: pointer;
   
}
.resultBox ul li:hover, .resultBox1 ul li:hover {
    background: #ebebeb;
    color: black;
    font-weight: bold;
    transform: scale(1.001);
    transition: background 0.1s ease-out, transform 0.1s ease-out;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.resultBox, .resultBox1{
    max-height: 300px;
    overflow-y: scroll;
}
@media screen and (max-width: 576px) {
    #ResponsiveBar{
        grid-column: 1  / span 4;
        grid-row: 2;
        display: block;
        width: 100%;
        background-color: #D9D9D9;
    }
    .rowSearch{
        width: 90%;
        margin-left: auto;
        margin-bottom: 15px;
        margin-top: 15px;
        margin-right: auto;

        /* width: 100%;
        margin: 10px auto;
        padding: 10px; */
    }
    
}