.country-selector .dropdown-menu {
    max-height: 350px;
    overflow-y: auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
}

.country-item {
    padding: 8px 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.2s;
}

.country-item:hover {
    background: #f3f4f6;
}

.country-item .flag {
    font-size: 1.2rem;
}

.country-item .country-name {
    flex-grow: 1;
    font-size: 0.9rem;
}

.country-item .dial-code {
    color: #6b7280;
    font-family: monospace;
    font-size: 0.85rem;
}

.country-search {
    position: sticky;
    top: 0;
    z-index: 10;
    background: white;
}