/* Bayroqli, qidiriladigan davlat tanlash widget'i — /registration va
   /profile'da telefon raqam kiritishda ishlatiladi (country-picker.js). */

.country-picker {
    position: relative;
    flex: 0 0 auto;
}

.cp-toggle {
    height: 100%;
    min-height: 44px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #fff;
    cursor: pointer;
    font-size: 15px;
    white-space: nowrap;
}

.cp-toggle:hover {
    background: #f7f7f7;
}

.cp-flag {
    font-family: "Segoe UI Emoji", "Noto Color Emoji", "Apple Color Emoji", "Twemoji Mozilla", sans-serif;
}

.cp-toggle .cp-flag {
    font-size: 18px;
    line-height: 1;
}

.cp-toggle .cp-arrow {
    font-size: 11px;
    color: #888;
    margin-left: 2px;
}

.cp-panel {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    width: 320px;
    max-width: 90vw;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    z-index: 50;
    overflow: hidden;
}

.cp-search {
    width: 100%;
    height: 42px;
    padding: 0 12px;
    border: none;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    outline: none;
    box-sizing: border-box;
}

.cp-list {
    max-height: 260px;
    overflow-y: auto;
}

.cp-row {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 9px 12px;
    cursor: pointer;
    font-size: 14px;
}

.cp-row:hover {
    background: #f1f5f9;
}

.cp-row.active {
    background: #e6f4ef;
    font-weight: 600;
}

.cp-row .cp-flag {
    font-size: 17px;
    flex-shrink: 0;
}

.cp-row .cp-name {
    flex: 1;
    /* Ismi uzun bo'lsa ham "..." bilan kesilmasin — to'liq o'qish uchun
       ikkinchi qatorga o'tadi (satr balandligi shunga qarab o'sadi). */
    white-space: normal;
    word-break: break-word;
    line-height: 1.3;
}

.cp-row .cp-dial {
    color: #888;
    flex-shrink: 0;
}

.cp-empty {
    padding: 16px 12px;
    text-align: center;
    color: #999;
    font-size: 13px;
    font-style: italic;
}
