/* Flight price badges */

#prices-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-bottom: 1px solid #0f3460;
  font-size: 13px;
}
#prices-toggle input {
  width: 16px;
  height: 16px;
  cursor: pointer;
}
#prices-toggle label {
  cursor: pointer;
  color: #a0a0c0;
}
#prices-panel {
  padding: 0 16px 10px;
  border-bottom: 1px solid #0f3460;
  font-size: 11px;
  color: #666;
  line-height: 1.4;
}

.price-badge {
  font-size: 10px;
  font-weight: 600;
  color: #6eb5ff;
  white-space: nowrap;
  margin-left: 4px;
}
.price-badge.price-loading {
  color: #888;
  font-weight: 400;
}
.price-badge.price-error,
.price-badge.price-empty {
  color: #666;
  font-weight: 400;
}

.aff-pinned-actions .price-badge {
  order: -1;
}

.flight-route-header .price-badge {
  margin-left: 6px;
}

#aff-price-summary {
  font-size: 11px;
  color: #6eb5ff;
  margin-top: 4px;
  min-height: 14px;
}

body.prices-disabled .prices-ui {
  display: none !important;
}
