/*
 * ===========================================
 *          ИСТОРИЯ ПОИСКА АЭРОПОРТОВ
 * ===========================================
 */

.airport-history-header,
.airport-search-header {
    padding: 6px 12px;
    background: var(--color-gray-50);
    border-bottom: 1px solid #e2e8f0;
    font-size: 11px;
    font-weight: 600;
    color: var(--color-gray-600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.airport-history-header {
    background: #fef7ed;
    color: var(--color-warning-dark);
}

.airport-search-header {
    background: #eff6ff;
    color: var(--color-primary);
    margin-top: 4px;
}

.history-icon,
.search-icon {
    font-size: 12px;
}

.airport-history-item {
    background: #fefffe;
    border-left: 3px solid var(--color-warning);
}

.airport-history-item:hover {
    background: #fef3c7;
    border-left-color: var(--color-warning-dark);
}

.airport-history-item .airport-name {
    color: var(--color-warning-dark);
}

.airport-history-item .airport-iata {
    background: var(--color-warning);
    color: var(--color-warning-dark);
}
