﻿.int-phone-container {
    position: relative;
    font-family: sans-serif;
    width: 100%;
}

.int-phone-wrapper {
    display: flex;
    border: 1px solid #ccc;
    border-radius: 4px;
    overflow: hidden;
}

.country-selector {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    background: #f8f9fa;
    border: none;
    border-right: 1px solid #ccc;
    cursor: pointer;
}

.phone-input {
    flex: 1;
    padding: 8px;
    border: none;
    outline: none;
}

.country-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 300px;
    max-height: 300px;
    background: white;
    border: 1px solid #ccc;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 1000;
    overflow-y: auto;
    margin: 4px 0;
    padding: 0;
    list-style: none;
}

.country-item {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    cursor: pointer;
}

.country-item:hover { background: #f0f0f0; }

.search-box {
    padding: 8px;
    position: sticky;
    top: 0;
    background: white;
}

.search-box input {
    width: 100%;
    padding: 6px;
    border: 1px solid #ddd;
}