.cc-wrap { position: relative; }
.cc-control {
    position: relative;
    display: flex;
    align-items: center;
}
.cc-control .cc-input {
    flex: 1 1 auto;
    min-width: 0;
}
.cc-flag {
    flex: 0 0 auto;
    margin-right: .55rem;
    line-height: 1;
    font-size: 1.15rem;
    border-radius: 2px;
    box-shadow: 0 0 0 1px rgba(0,0,0,.06);
}
.cc-caret {
    flex: 0 0 auto;
    margin-left: .5rem;
    pointer-events: none;
    color: var(--muted, #888);
    font-size: .7rem;
}
.cc-dropdown {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    max-height: 240px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid rgba(0,0,0,.12);
    border-radius: 11px;
    box-shadow: 0 12px 30px rgba(0,0,0,.14);
    z-index: 50;
    padding: .3rem;
}
.cc-item {
    padding: .55rem .7rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: .9rem;
}
.cc-item:hover,
.cc-item.active { background: rgba(13,110,253,.10); }
.cc-empty {
    padding: .55rem .7rem;
    color: #888;
    font-size: .85rem;
}
.cc-row {
    display: flex;
    gap: .6rem;
    align-items: flex-start;
}
.cc-row .cc-col-code { flex: 0 0 33.333%; max-width: 33.333%; }
.cc-row .cc-col-num  { flex: 1 1 0; min-width: 0; }
.cc-flag { margin-right: .45rem; }
.cc-code { color: #0d6efd; font-weight: 600; }
@media (max-width: 520px) {
    .cc-row { flex-direction: column; gap: .5rem; }
    .cc-row .cc-col-code { flex: 1 1 auto; max-width: 100%; width: 100%; }
}
