/* CSS for the search bar and clear icon */
.search-container {
    position: relative;
}

#search-bar {
    padding-right: 30px; /* Space for the clear icon */
}

.clear-icon {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 40px!important;
    color: #999;
}

span#clear-icon.clear-search {
     font-size: 40px!important;
}


/* CSS for the search bar container */
.search-bar-container {
    display: flex;
    justify-content: center;

}

/* CSS for the search bar */
#search-bar {
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 12px 20px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 00px;
    outline: none;
    transition: border-color 0.3s ease;
    box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.1);
}

#search-bar:focus {
    border-color: #0066cc;
}




/* CSS for the search results */
#search-results {
    position: absolute;
    max-width: 100%;
    width: 100%;
    margin: 00px auto;
    z-index: 999;
    background-color: #f9f9f9;/* Set a higher z-index to ensure it appears above other content*/ 
}

.content-below {
    margin-top: 20px;
}

.product-item {
    display: flex;
    align-items: center;
    margin-bottom: 0px;
    padding: 10px;
    border: 1px solid #e6e6e6;
    border-radius: 0px;
    background-color: #f9f9f9;
}

.product-item img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 20px;
}

.product-item a {
    font-size: 16px!important;
    font-weight: 500!important;
    text-decoration: none;
    color: #1b1b1b!important;
    transition: color 0.3s ease;
}

.product-item a:hover {
    color: #06c!important;
}

.product-price {
    font-size: 18px;
    color: #06ACEC!important;
    margin-left: auto;  /*Add this to float the price to the right*/ 
}
a.product-price{
    font-size: 18px;
    color: #06ACEC!important;
    
}