.phone-field {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    position: relative;
}

.country-select {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 0.8rem;
    border: 1px solid #ccc;
    cursor: pointer;
    user-select: none;
}

.country-select img {
    width: 20px;
    height: auto;
}

.country-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 220px;
    border: 1px solid #ccc;
    background: #fbfaf8;
    list-style: none;
    padding: 0;
    margin: 0.25rem 0 0;
    max-height: 220px;
    overflow-y: auto;
    z-index: 100;
}

.selected,
.country-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    padding: 10;
}

.country-list li:hover {
    background: #f5f5f5;
}

.country-list img {
    width: 20px;
    padding-left: 2;
}

.phone-field input {
    padding: 0.6rem;
    border: 1px solid #ccc;
    flex: 1;
}
