#airline-suggestions {
    position: absolute;
    z-index: 1050;
    background: #fff;
    border: 1px solid #ccc;
    border-top: none;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 4px 8px rgba(0,0,0,.15);
    max-height: 300px;
    overflow-y: auto;
    display: none;
    left: 0;
    right: 0;
}

.suggestion-item {
    padding: 10px 14px;
    min-height: 44px;
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 15px;
    border-bottom: 1px solid #f0f0f0;
}

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

.suggestion-item:hover,
.suggestion-item.active {
    background-color: #f5f5f5;
}

.suggestion-item .suggestion-code {
    font-weight: bold;
    margin-right: 8px;
    white-space: nowrap;
}

.suggestion-item .suggestion-name {
    color: #666;
}

#airline-input-wrapper {
    position: relative;
}

/* Keep the feedback checkmark aligned with the input, not the bottom of the wrapper */
#airline-ok {
    top: 34px; /* label height (~14px) + a little spacing */
    pointer-events: none;
}
