/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here*/ 
 
body{
	background-color:#fff !important;
}

#ajax-search-results {
    position: absolute;
    top: 50px; /* Adjust based on where you want it to appear */
    left: 0;
    width: 100%;
    background-color: white; /* Add a background to make sure it's visible */
    z-index: 9999; /* Ensure it appears on top of other content */
    display: none; /* Hide by default */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Optional: Add a shadow for better visibility */
}
#ajax-search-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    box-sizing: border-box;
    position: relative;
    z-index: 10000; /* Make sure the input field appears above other content */
}

.search-container {
    position: relative; /* To act as the container for the input field */
    width: 100%;
}
#ajax-search-results {
    position: fixed;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 33%;
    max-height: 400px;
    overflow-y: auto;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    display: none;
	border-radius:8px;
}
