/* .autocomplete-dropdown {
    position: absolute;
    width: 100%;
    background: white;
    border: 1px solid #ccc;
    max-height: 200px;
    overflow-y: auto;
    display: none;
} */
.simple-search {
    position: relative; /* Ensures autocomplete-dropdown positions correctly */

}


.input-group .serach-right-border {
    border-top-right-radius: 1.3rem !important;
    border-bottom-right-radius: 1.3rem !important;
}

.autocomplete-dropdown {
    position: absolute;
    top: 100%; /* Ensure it appears below the input */
    left: 0;
    z-index: 1000; /* Ensure it stays on top of other elements */
    width: 100%;
    background: white;
    max-height: 200px;
    overflow-y: auto;
    display: none;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Adds slight shadow */
    border-radius: 10px !important;
    border: solid 1px rgba(0, 0, 0, 0.06);
}


/* Custom scrollbar */
.autocomplete-dropdown::-webkit-scrollbar {
    width: 3px; /* Make scrollbar thinner */
}

.autocomplete-dropdown::-webkit-scrollbar-track {
    background: var(--primary); 
}

.autocomplete-dropdown::-webkit-scrollbar-thumb {
    background: #f4f4f4;
    /* border-radius: 5px; */
}

.autocomplete-dropdown::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.autocomplete-item {
    padding: 8px;
    cursor: pointer;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.autocomplete-item:hover {
    background: var(--grey-100);
}

.no-results {
    padding: 8px;
    color: gray;
}