.mobile-field-row {
    display: flex;
    gap: 0;
    align-items: stretch;
    position: relative;
}

.mobile-field-row .country-dropdown {
    flex: 0 0 auto;
    width: 100px;
}

.mobile-field-row #mobile {
    flex: 1;
    border-left: none !important;
    outline: none;
}

.mobile-field-row #mobile:focus {
    outline: none;
    box-shadow: none;
}

.mobile-field-row:focus-within {
    box-shadow: inset 0 0 0 2px #4d90fe;
}

.mobile-field-row:focus-within .country-dropdown-btn {
    border-color: #76777A;
}

.mobile-field-row:focus-within #mobile {
    border-color: #76777A;
}

.country-dropdown {
    position: static;
    width: 100%;
}

.country-dropdown-btn {
    padding: 11px 10px;
    margin-bottom: 0px;
    font: inherit;
    font-size: 14px;
    border: solid 1px #76777A;
    border-right: none;
    background-color: #FFFFFF;
    -webkit-border-radius: 0;
    color: #4A474A;
    width: 100%;
    font-family: "SofiaPro-Light", sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    height: 100%;
    box-sizing: border-box;
}

.country-dropdown-btn:hover {
    border-color: #76777A;
}

.flag-placeholder {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
}

.flag-placeholder .fi {
    position: relative;
    top: -1px;
}

.dial-code-display {
    font-size: 14px;
    color: #4A474A;
}

.dropdown-arrow {
    margin-left: 8px;
    font-size: 10px;
    transition: transform 0.2s;
}

.country-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    max-height: 300px;
    overflow: hidden;
}

.country-dropdown-menu.show {
    display: block;
}

.country-search {
    width: 100%;
    padding: 10px;
    border: none;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    outline: none;
    box-sizing: border-box;
}

.country-search:focus {
    border-bottom-color: #57beea;
}

.country-list {
    max-height: 250px;
    overflow-y: auto;
}

.country-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    cursor: pointer;
    transition: background-color 0.2s;
    justify-content: space-between;
}

.country-option:hover {
    background-color: #f5f5f5;
}

.country-option .fi {
    width: 24px;
    height: 18px;
    border-radius: 2px;
    flex-shrink: 0;
    font-size: 24px;
}

.country-name {
    font-size: 14px;
    color: #2a2a2a;
    flex: 1;
}

.country-dial-code {
    font-size: 14px;
    color: #767676;
    margin-left: 4px;
}

.country-separator {
    height: 1px;
    background-color: #ddd;
    margin: 4px 0;
}
