/* Autocomplete dropdown container */
.ac_results {
    padding: 0px;
    border: 1px solid #ccc;  /* Light gray border for contrast */
    background-color: #ffffff;  /* White background for dropdown */
    overflow: hidden;
    z-index: 99999;  /* Ensures the dropdown appears above other elements */
    box-sizing: border-box;  /* Ensures padding and borders are included in the width/height calculation */
    font-family: Arial, sans-serif;  /* Ensures readable font */
}

/* Unordered list container for autocomplete results */
.ac_results ul {
    width: 100%;
    list-style: none;  /* Removes default list styling */
    padding: 0;
    margin: 0;
}

/* List items inside the autocomplete dropdown */
.ac_results li {
    margin: 0px;
    padding: 8px 12px;  /* Add some padding for better readability */
    cursor: pointer;  /* Change cursor to pointer when hovering over results */
    font-size: 14px;  /* Set a readable font size */
    line-height: 20px;  /* Set line height for consistency */
}

/* Style for odd-numbered list items */
.ac_odd {
    background-color: #f8f9fa;  /* Light gray background for odd items */
}

/* Hover effect on list items */
.ac_over {
    background-color: #075a9f;  /* Blue background when hovering */
    color: white;  /* White text on hover */
}

/* Loading state with an indicator image */
.ac_loading {
    background: white url('images/indicator.gif') right center no-repeat;  /* Loading gif on the right */
}