/* Laenderwahl und Kalibrierungsabzeichen
   Ausgebaut aus leagues-diagnostic.html.
   Etappe vier der Architekturarbeit: Nur Leagues hat die Landessuche. Die Regeln stehen darum
   in einer eigenen Datei und nicht in der gemeinsamen Schale. */

/* Country typeahead (L2 · Club parity) */
  .typeahead-list {
    position: absolute;
    top: calc(100% + 4px);
    left: 0; right: 0;
    background: #F7F5F0;
    border: 1px solid rgba(0, 0, 0, 0.10);
    border-radius: 3px;
    max-height: 260px;
    overflow-y: auto;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
    z-index: 30;
    display: none;
  }
  .typeahead-list.open { display: block; }
  .typeahead-item {
    padding: 9px 14px;
    font-size: 14px;
    cursor: pointer;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .typeahead-item:last-child { border-bottom: none; }
  .typeahead-item:hover,
  .typeahead-item.active { background: rgba(235, 112, 51, 0.10); color: var(--ink, #0D3D2D); }
  .typeahead-item .flag { font-size: 16px; }
  .typeahead-item.other { font-style: italic; color: rgba(13, 61, 45, 0.72); }
  .typeahead-empty {
    padding: 12px 14px;
    font-size: 13px;
    color: #9FA1A2;
    font-style: italic;
  }
  .country-calib-note {
    margin-top: 6px;
    font-size: 12px;
    color: var(--muted);
  }
  .country-calib-note .cal-badge {
    display: inline-block;
    padding: 1px 7px;
    border-radius: 2px;
    font-size: 11px;
    font-weight: 500;
    margin-right: 4px;
  }
  .cal-badge.calibrated { background: rgba(34, 122, 43, 0.14); color: #227A2B; }
  .cal-badge.estimated { background: rgba(235, 112, 51, 0.14); color: #953B0F; }
