/* Autocomplete Container */
.hdr-search, .sb-search, .mobile-drawer-search { 
    position: relative; 
}

.autocomplete-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #1a1a1a !important;
    border: 1px solid #444;
    border-top: none;
    z-index: 10000;
    max-height: 450px;
    overflow-y: auto;
    border-radius: 0 0 6px 6px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.8);
    margin-top: 1px;
}

/* Individual Result Row */
.ac-item {
    padding: 12px 16px;
    cursor: pointer;
    color: #ffffff !important; /* Forces visibility */
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    line-height: 1.4;
    border-bottom: 1px solid #2a2a2a;
    display: block;
    text-align: left;
    transition: background 0.1s ease;
}

.ac-item:last-child {
    border-bottom: none;
}

/* Hover/Focus State */
.ac-item:hover, .ac-item.selected {
    background-color: #0078ff !important; /* Your signature blue */
    color: #ffffff !important;
}

/* Prevent text selection while clicking fast */
.ac-item {
    user-select: none;
}