.autocomplete-list {
    position: absolute;
    top: 110%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #e0e6ed;
    border-radius: 12px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.12);
    max-height: 320px;
    overflow-y: auto;
    z-index: 1050;
    display: none;
    font-size: 14px;
}

.autocomplete-item {
    padding: 16px;
    cursor: pointer;
    border-bottom: 1px solid #f5f7fa;
    transition: all 0.25s ease;
}

.autocomplete-item:hover {
    background: linear-gradient(90deg, #f8faff, #f0f4ff);
    border-left: 4px solid #7167ff;
}

.autocomplete-main {
    margin-bottom: 4px;
}

.autocomplete-main strong {
    color: #1a1a1a;
    font-weight: 600;
    display: inline-block;
    margin-right: 10px;
}

.airport-code {
    background: #7167ff;
    color: white;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.autocomplete-sub {
    color: #64748b;
    font-size: 13px;
    line-height: 1.4;
}


.autocomplete-container { position: relative; }

  


.autocomplete-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    max-height: 240px;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    display: none;
}

.autocomplete-item {
    padding: 12px 16px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s;
}

.autocomplete-item:hover {
    background: #f8f9ff;
}

.autocomplete-item:last-child {
    border-bottom: none;
}

.autocomplete-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.airport-code {
    background: #007bff;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
}

