.parcy-phone {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}
.parcy-phone__btn {
    display: flex;
    align-items: center;
    gap: 4px;
    position: absolute;
    left: 1px;
    top: 1px;
    bottom: 1px;
    padding: 0 8px;
    background: transparent;
    border: none;
    border-right: 1px solid #d1d5db;
    cursor: pointer;
    z-index: 1;
    font-size: 14px;
    border-radius: 6px 0 0 6px;
    white-space: nowrap;
}
.parcy-phone__btn:hover {
    background: #f3f4f6;
}
.parcy-phone__btn:disabled {
    cursor: default;
    opacity: 0.6;
}
.parcy-phone__btn:disabled:hover {
    background: transparent;
}
.parcy-phone__flag {
    font-size: 18px;
    line-height: 1;
}
.parcy-phone__code {
    font-size: 13px;
    color: #374151;
}
.parcy-phone__arrow {
    font-size: 10px;
    color: #6b7280;
    margin-left: 2px;
}
.parcy-phone input[type="tel"],
.parcy-phone input[type="text"] {
    padding-left: 100px !important;
    width: 100%;
}
.parcy-phone__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 9999;
    width: 300px;
    max-height: 280px;
    background: #fff;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    margin-top: 4px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.parcy-phone__search {
    padding: 8px 12px !important;
    border: none !important;
    border-bottom: 1px solid #e5e7eb !important;
    font-size: 14px !important;
    outline: none !important;
    width: 100% !important;
    box-sizing: border-box !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    height: auto !important;
}
.parcy-phone__search:focus {
    border-color: #e5e7eb !important;
    box-shadow: none !important;
}
.parcy-phone__list {
    overflow-y: auto;
    max-height: 230px;
}
.parcy-phone__item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 14px;
}
.parcy-phone__item:hover {
    background: #f3f4f6;
}
.parcy-phone__item--active {
    background: #eff6ff;
}
.parcy-phone__item-flag {
    font-size: 18px;
    line-height: 1;
    flex-shrink: 0;
}
.parcy-phone__item-name {
    flex: 1;
    color: #111827;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.parcy-phone__item-code {
    color: #6b7280;
    font-size: 13px;
    flex-shrink: 0;
}
.parcy-phone__separator {
    height: 1px;
    background: #e5e7eb;
    margin: 4px 0;
}
