/* ============================================
   AUTOCOMPLETE
   ============================================ */

.autocomplete-wrapper {
    position: relative;
    width: 100%;
}

.autocomplete-results {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 2px solid #667eea;
    border-top: none;
    border-radius: 0 0 10px 10px;
    max-height: 220px;
    overflow-y: auto;
    z-index: 9999;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.15);
}

.autocomplete-item {
    padding: 12px 16px;
    cursor: pointer;
    font-size: 0.95rem;
    color: #333;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.15s;
}

.autocomplete-item:last-child {
    border-bottom: none;
}

.autocomplete-item:hover {
    background: #f0f3ff;
    color: #667eea;
    font-weight: 500;
}

.autocomplete-item.no-results {
    color: #999;
    cursor: default;
    font-style: italic;
}

.autocomplete-item.no-results:hover {
    background: white;
    color: #999;
    font-weight: 400;
}
