﻿.search-results-info {
    display: none;
    margin-top: 18px;
    padding: 12px 16px;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #334155;
    font-size: 14px;
    font-weight: 500;
}

    .search-results-info i {
        margin-right: 8px;
        color: #2563eb;
    }

.autocomplete-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-top: none;
    box-shadow: 0 4px 12px rgba(0,0,0,.15);
    z-index: 9999;
    display: none;
    max-height: 350px;
    overflow-y: auto;
}
.autocomplete-icon {
    color: #878787;
    width: 18px;
    text-align: center;
}
.autocomplete-type {
    color: #878787;
    font-size: 12px;
    margin-left: auto;
}

.highlight {
    font-weight: 700;
    color: #000;
}

autocomplete-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

.autocomplete-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    cursor: pointer;
}

    .autocomplete-item:hover {
        background: #f8fafc;
    }
