.phone-with-code {
    position: relative;
}

.phone-input-wrapper {
    display: flex;
    align-items: stretch;
    width: 100%;
    min-height: 50px;
    height: 38px;
}

.country-selector {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 10px;
    height: 100%;
    border-bottom: 1px solid #fff;
    background: transparent;
    cursor: pointer;
}

.country-selector .flag {
    width: 24px;
    height: 18px;
    object-fit: cover;
}

.country-selector .dial-code {
    font-size: 14px;
    white-space: nowrap;
}

.dropdown-arrow {
    width: 14px;
    height: 14px;
}

.phone-input {
    flex: 1;
}

.country-dropdown {
    position: absolute;
    z-index: 50;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: #fff;
    padding: 8px;
    display: none;
}

.country-dropdown.open {
    display: block;
}

.search-input {
    width: 100%;
    padding: 8px;
    margin-bottom: 6px;
    color: black;
}

.country-list {
    max-height: 240px;
    overflow-y: auto;
    color: #666;
}

.country-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 6px;
    cursor: pointer;
}

.country-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.country-item img {
    width: 33px;
    height: 25px;
    margin-right: 12px;
}

.country-item .country-name {
    flex: 1;
    font-size: 14px;
}

.country-item .dial-code {
    color: #666;
    font-size: 13px;
}

.dropdown-arrow {
    width: 16px;
    height: 16px;
    transition: transform 0.2s;
    margin-left: 6px;
}

.country-selector.active .dropdown-arrow {
    transform: rotate(180deg);
}